diff options
author | John Wiegley <johnw@newartisans.com> | 2012-03-03 01:17:21 -0600 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2012-03-05 05:03:51 -0600 |
commit | c8c2a17e282c2cbf3c0edb1b756e16be58328331 (patch) | |
tree | decf0c8d24db423a5415668727da26a6897800be /tools | |
parent | 35ace8816adb76e80e99afb947d66777b31ba43f (diff) | |
download | fork-ledger-c8c2a17e282c2cbf3c0edb1b756e16be58328331.tar.gz fork-ledger-c8c2a17e282c2cbf3c0edb1b756e16be58328331.tar.bz2 fork-ledger-c8c2a17e282c2cbf3c0edb1b756e16be58328331.zip |
Fixed invocation of lambda expressions
foo = x, y, z -> print(x, y, z)
foo(1, 2, 3)
However, this still does not work:
(x, y, z -> print(x, y, z))(1, 2, 3)
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/proof | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/proof b/tools/proof index f37c1488..3b997143 100755 --- a/tools/proof +++ b/tools/proof @@ -15,12 +15,12 @@ ledger_proof() { exit 0 fi - rm -fr $DEST/ledger-proof + sudo rm -fr $DEST/ledger-proof time nice -n 20 \ ./acprep --debug --enable-doxygen --universal --clang -j16 proof 2>&1 | \ tee $LOGDIR/ledger-proof.log - rm -fr $DEST/ledger-proof + sudo rm -fr $DEST/ledger-proof time nice -n 20 \ ./acprep --debug --enable-doxygen --universal --python --clang -j16 proof 2>&1 | \ tee -a $LOGDIR/ledger-proof.log |