summaryrefslogtreecommitdiffstats
path: root/eshtrans
diff options
context:
space:
mode:
authorP. J. McDermott <pj@pehjota.net>2016-02-23 14:12:28 (EST)
committer P. J. McDermott <pj@pehjota.net>2016-02-23 14:12:28 (EST)
commit016fade613b1fc2300bc4c46ad501ea8286e4a2c (patch)
tree572941b2b9405a73ceb146a5371ee17078c3d38f /eshtrans
parent02339d09ee9df166388be2a17bf643e29ffc7576 (diff)
downloadeggshell-016fade613b1fc2300bc4c46ad501ea8286e4a2c.zip
eggshell-016fade613b1fc2300bc4c46ad501ea8286e4a2c.tar.gz
eggshell-016fade613b1fc2300bc4c46ad501ea8286e4a2c.tar.bz2
..Now you don't
Diffstat (limited to 'eshtrans')
-rw-r--r--eshtrans/bootstrap.sh18
1 files changed, 0 insertions, 18 deletions
diff --git a/eshtrans/bootstrap.sh b/eshtrans/bootstrap.sh
deleted file mode 100644
index 00b8072..0000000
--- a/eshtrans/bootstrap.sh
+++ /dev/null
@@ -1,18 +0,0 @@
-printf 'Stage 1\n'
-printf 'main "${@}"\n' | cat $(find * -type f -a -name '*.esh') - >stage1.sh
-
-printf 'Stage 2\n'
->stage2.sh
-for f in $(find * -type f -a -name '*.esh'); do
- echo compiling "$f"
- time -p sh stage1.sh "$f" >>stage2.sh
-done
-printf 'main "${@}"\n' >>stage2.sh
-
-printf 'Stage 3\n'
->stage3.sh
-for f in $(find * -type f -a -name '*.esh'); do
- echo compiling "$f"
- time -p sh stage2.sh "$f" >>stage3.sh
-done
-printf 'main "${@}"\n' >>stage3.sh