6401 - have scripts follow the Unix way

Stay silent if all is well.

I don't agree with this, but it's not like the messages I was printing
out were particularly useful.
This commit is contained in:
Kartik Agaram 2020-05-24 22:56:08 -07:00
parent 3ec4bae261
commit f4e609c3a7
2 changed files with 0 additions and 20 deletions

View File

@ -19,11 +19,8 @@
set -e
echo " braces"
cat $* |apps/braces > a.braces
echo " calls"
cat a.braces |apps/calls > a.calls
echo " sigils"
cat a.calls |apps/sigils > a.sigils
./bootstrap --debug translate a.sigils -o a.elf

View File

@ -20,31 +20,14 @@ set -e
./build
echo " braces"
cat $* |./bootstrap_bin run apps/braces > a.braces
echo " calls"
cat a.braces |./bootstrap_bin run apps/calls > a.calls
echo " sigils"
cat a.calls |./bootstrap_bin run apps/sigils > a.sigils
echo " tests"
cat a.sigils |./bootstrap_bin run apps/tests > a.tests
echo " dquotes"
cat a.tests |./bootstrap_bin run apps/dquotes > a.dquotes
echo " assort"
cat a.dquotes |./bootstrap_bin run apps/assort > a.assort
echo " pack"
cat a.assort |./bootstrap_bin run apps/pack > a.pack
echo " survey"
cat a.pack |./bootstrap_bin run apps/survey > a.survey
echo " hex"
cat a.survey |./bootstrap_bin run apps/hex > a.elf
chmod +x a.elf