diff options
author | Kartik Agaram <vc@akkartik.com> | 2019-08-25 22:15:26 -0700 |
---|---|---|
committer | Kartik Agaram <vc@akkartik.com> | 2019-08-25 22:15:26 -0700 |
commit | 418ea7d3dbc81b066852c615329b1f463a2a33c0 (patch) | |
tree | 9c9495278389241e789e720b80d494a51026a092 /translate | |
parent | 840236597711c51ef2c233c824fa39b44e64cce9 (diff) | |
download | mu-418ea7d3dbc81b066852c615329b1f463a2a33c0.tar.gz |
5588 - always include desugar in build
Diffstat (limited to 'translate')
-rwxr-xr-x | translate | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/translate b/translate index a3acacc6..aafb11a3 100755 --- a/translate +++ b/translate @@ -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 |