summaryrefslogtreecommitdiff
path: root/conf/build-magic.sh
diff options
context:
space:
mode:
Diffstat (limited to 'conf/build-magic.sh')
-rwxr-xr-xconf/build-magic.sh20
1 files changed, 0 insertions, 20 deletions
diff --git a/conf/build-magic.sh b/conf/build-magic.sh
deleted file mode 100755
index 30ec35b8..00000000
--- a/conf/build-magic.sh
+++ /dev/null
@@ -1,20 +0,0 @@
-#! /bin/bash
-
-RSCRIPT="spells-build"
-
-if ! grep -q -s '/bin/sed' $RSCRIPT; then
- echo '#! /bin/sed -f' > $RSCRIPT;
- chmod a+x $RSCRIPT
-fi
-
-for n in `grep -o '"#..."' magic.conf.template`; do
- if ! grep -q $n $RSCRIPT; then
- CHANGES=1
- echo "s/${n}/${n}/" >> $RSCRIPT;
- fi
-done
-
-if [ x$CHANGES == x1 ]
-then echo "${RSCRIPT} has been updated; please provide invocations for spells and/or teleport anchors.";
-else ./$RSCRIPT magic.conf.template > magic.conf;
-fi