diff options
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/pre-commit | 8 | ||||
-rwxr-xr-x | tools/proof | 6 |
2 files changed, 7 insertions, 7 deletions
diff --git a/tools/pre-commit b/tools/pre-commit index 2f8ded1a..fb62c49d 100755 --- a/tools/pre-commit +++ b/tools/pre-commit @@ -10,7 +10,7 @@ if echo $(git rev-parse --symbolic-full-name HEAD) | \ fi # These are the locations I keep my temporary source and build trees in -PRODUCTS=$(./acprep products) # generates a build directory name such as +PRODUCTS=$(./acprep products) # generates a build directory name such as # ~/Products/ledger TMPDIR=$PRODUCTS/ledger/pre-commit MIRROR=$PRODUCTS/ledger/pre-commit-mirror @@ -46,11 +46,11 @@ if [ ! -f Makefile -o \ \( -f acprep -a acprep -nt Makefile \) ] then if [ -f acprep ]; then - echo Will run acprep in a moment + echo Will run acprep in a moment elif [ -f autogen.sh ]; then - sh autogen.sh && ./configure + sh autogen.sh && ./configure else - autoreconf && ./configure + autoreconf && ./configure fi fi diff --git a/tools/proof b/tools/proof index 5a329a50..7e345234 100755 --- a/tools/proof +++ b/tools/proof @@ -19,10 +19,10 @@ time ./acprep --universal -j16 --warn proof 2>&1 | \ if egrep -q '(ERROR|CRITICAL)' ~/Desktop/proof.log; then if [[ "$1" = "--alert" ]]; then - notify "Ledger proof build FAILED" + notify "Ledger proof build FAILED" else - echo "Ledger proof build FAILED" - exit 1 + echo "Ledger proof build FAILED" + exit 1 fi else echo "Ledger proof build succeeded" |