about summary refs log tree commit diff stats
path: root/translate
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2019-08-25 22:15:26 -0700
committerKartik Agaram <vc@akkartik.com>2019-08-25 22:15:26 -0700
commit418ea7d3dbc81b066852c615329b1f463a2a33c0 (patch)
tree9c9495278389241e789e720b80d494a51026a092 /translate
parent840236597711c51ef2c233c824fa39b44e64cce9 (diff)
downloadmu-418ea7d3dbc81b066852c615329b1f463a2a33c0.tar.gz
5588 - always include desugar in build
Diffstat (limited to 'translate')
-rwxr-xr-xtranslate5
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