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