Skip to content

Commit e76c1bc

Browse files
committed
2 parents 49b7a2d + b8cf974 commit e76c1bc

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

README.md

+8
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,14 @@ complicated but in short, for Linux systems, you would do something like:
3737
sudo cp RootCA-crt.pem /usr/local/share/ca-certificates/RootCA.crt
3838
sudo update-ca-certificates --fresh
3939

40+
## Installation
41+
42+
The go way:
43+
44+
go get github.com/andmarios/quickcert
45+
46+
If you use Gentoo, there is an [ebuild available](https://github.com/andmarios/ebuilds_backyard/tree/master/app-crypt/quickcert).
47+
4048
## Limitations
4149

4250
Of course you can use any externally created CA private key - certificate pair. But

git-hooks/pre-commit

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
# ln -s ../../git-hooks/pre-commit .git/hooks/pre-commit
1515

1616
HASH="$(git rev-parse --short HEAD)"
17-
COMMITS="$(git rev-list HEAD --count)"
17+
COMMITS="$(git rev-list HEAD --count quickcert.go)"
1818
sed 's/version = .*/version = "'"$COMMITS"'.'"$HASH"'+"/' -i version.go
1919
git add version.go
2020

version.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
package main
22

3-
const version = "10.63c457b+"
3+
const version = "6.929736d+"

0 commit comments

Comments
 (0)