summaryrefslogtreecommitdiff
path: root/tools/proof
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2009-10-31 06:03:26 -0400
committerJohn Wiegley <johnw@newartisans.com>2009-10-31 06:03:26 -0400
commit9cbc9705582aaebd051d53ca4ead1793d9f59211 (patch)
tree7fb744abc0f5ecdecc728aeefe8fb2cb5f9eb995 /tools/proof
parentae6743ab15669cbeb6bfc121ba7c7903d7839a3c (diff)
downloadfork-ledger-9cbc9705582aaebd051d53ca4ead1793d9f59211.tar.gz
fork-ledger-9cbc9705582aaebd051d53ca4ead1793d9f59211.tar.bz2
fork-ledger-9cbc9705582aaebd051d53ca4ead1793d9f59211.zip
Improvements to tools/proof
Diffstat (limited to 'tools/proof')
-rwxr-xr-xtools/proof10
1 files changed, 5 insertions, 5 deletions
diff --git a/tools/proof b/tools/proof
index 72104dfb..04afc097 100755
--- a/tools/proof
+++ b/tools/proof
@@ -2,10 +2,10 @@
set -e
-git stash
-git checkout master
-
rm -fr ~/Products/ledger*
-(./acprep -j16 --warn proof 2>&1 | tee ~/Desktop/proof.log) \
- || notify "Ledger proof build failed"
+if ./acprep -j16 --warn proof 2>&1 | tee ~/Desktop/proof.log; then
+ echo "Ledger proof build succeeded"
+else
+ notify "Ledger proof build failed"
+fi