formatting

This commit is contained in:
Lance Vick 2020-11-16 04:31:25 -08:00
parent 316552e417
commit 93750523de
Signed by: lrvick
GPG Key ID: 8E47A1EC35A1551D
1 changed files with 18 additions and 14 deletions

View File

@ -14,11 +14,13 @@ The simple GPG signature toolchain for directories or git repos.
## Install ## Install
1. Clone 1. Clone
``` ```
git clone git@gitlab.com/pchq/sig.git sig git clone git@gitlab.com/pchq/sig.git sig
``` ```
2. Manually verify 2. Manually verify
``` ```
for file in .sig/*.asc; do gpg --verify $file .sig/manifest.txt; done for file in .sig/*.asc; do gpg --verify $file .sig/manifest.txt; done
gpg log --show-signature gpg log --show-signature
@ -26,11 +28,13 @@ The simple GPG signature toolchain for directories or git repos.
``` ```
3. Self verify 3. Self verify
``` ```
./sig verify --threshold 3 ./sig verify --threshold 3
``` ```
4. Copy to $PATH 4. Copy to $PATH
``` ```
cp sig ~/.local/bin/ cp sig ~/.local/bin/
``` ```