13 lines
249 B
Bash
Executable file
13 lines
249 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
rm -fr ~/Products/ledger*
|
|
|
|
./acprep -j16 --warn proof 2>&1 | tee ~/Desktop/proof.log
|
|
|
|
if egrep -q '(ERROR|CRITICAL)' ~/Desktop/proof.log; then
|
|
notify "Ledger proof build failed"
|
|
else
|
|
echo "Ledger proof build succeeded"
|
|
fi
|