diff --git a/README.md b/README.md index 15995e8..1f31064 100644 --- a/README.md +++ b/README.md @@ -23,15 +23,15 @@ You can override this value by specifying a `PIGEON_PATH` ENV var. |Done?|Noun |Verb | Flag / arg 1 | Flag 2 | |-----|------------|-----------|---------------|-----------| + | |bundle |ingest | | | + | |message |show | message mhash | | + | |message |find | --all | | + | |message |find | --last | | | |draft |create | | | | |draft |publish | | | | |draft |show | | | | |draft |update | --key=? | --value=? | - | |message |find | --all | | - | |message |find | --last | | - | |message |show | message mhash | | | |bundle |create | | | - | |bundle |ingest | | | | X |blob |find | | | | X |blob |add | file path | | | X |blob |add | STDIO pipe | | diff --git a/build.sh b/build.sh index 619106e..577d601 100755 --- a/build.sh +++ b/build.sh @@ -4,6 +4,5 @@ cd project go build --o=../pigeon-cli env GOOS=windows GOARCH=386 go build --o=../pigeon.exe cd - -PIGEON_PATH="." ./pigeon-cli version ./pigeon-cli identity show diff --git a/coverage.sh b/coverage.sh index 4bd3d5c..a070d57 100755 --- a/coverage.sh +++ b/coverage.sh @@ -1,5 +1,5 @@ #!/bin/sh cd project -go test -coverprofile coverage.out -go tool cover -html=coverage.out +PIGEON_PATH="./testdata" go test -coverprofile coverage.out +PIGEON_PATH="./testdata" go tool cover -html=coverage.out cd - diff --git a/tests.sh b/tests.sh index 55e3cc4..15264a0 100755 --- a/tests.sh +++ b/tests.sh @@ -1,4 +1,4 @@ #!/bin/sh cd project -go test -v +PIGEON_PATH="./testdata" go test -v cd -