5588 - always include desugar in build

This commit is contained in:
Kartik Agaram 2019-08-25 22:15:26 -07:00
parent 8402365977
commit 418ea7d3db
2 changed files with 7 additions and 2 deletions

View File

@ -15,7 +15,9 @@ set -e
./build
cat $* |apps/tests > a.tests
cat $* |apps/desugar > a.desugar
cat a.desugar |apps/tests > a.tests
cat a.tests |apps/dquotes > a.dquotes

View File

@ -15,8 +15,11 @@ set -e
./build
echo " desugar"
cat $* |./subx_bin run apps/desugar > a.desugar
echo " tests"
cat $* |./subx_bin run apps/tests > a.tests
cat a.desugar |./subx_bin run apps/tests > a.tests
echo " dquotes"
cat a.tests |./subx_bin run apps/dquotes > a.dquotes