aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/LuaSL/test.sh
diff options
context:
space:
mode:
authorDavid Walter Seikel2014-05-13 14:42:20 +1000
committerDavid Walter Seikel2014-05-13 14:42:20 +1000
commit29f3fe70aeb5f566864c7868f7c89483547e92b4 (patch)
treec142966809d5b0d67104e12c8b7ed5d61417dab8 /src/LuaSL/test.sh
parentOops, left this laying around, no longer needed. (diff)
downloadSledjHamr-29f3fe70aeb5f566864c7868f7c89483547e92b4.zip
SledjHamr-29f3fe70aeb5f566864c7868f7c89483547e92b4.tar.gz
SledjHamr-29f3fe70aeb5f566864c7868f7c89483547e92b4.tar.bz2
SledjHamr-29f3fe70aeb5f566864c7868f7c89483547e92b4.tar.xz
Extantz calls love, and love calls LuaSL, and clean out the need for scripts to twiddle the Lua paths.
Diffstat (limited to 'src/LuaSL/test.sh')
-rwxr-xr-xsrc/LuaSL/test.sh27
1 files changed, 0 insertions, 27 deletions
diff --git a/src/LuaSL/test.sh b/src/LuaSL/test.sh
deleted file mode 100755
index e8471c8..0000000
--- a/src/LuaSL/test.sh
+++ /dev/null
@@ -1,27 +0,0 @@
1#! /bin/bash
2
3wd=$(pwd)
4
5# Kill any left overs.
6killall -KILL LuaSL
7export LUA_PATH="$wd/../../lib/?.lua"
8
9case $@ in
10
11 ddd)
12 ddd ../../LuaSL
13 ;;
14
15 gdb)
16 gdb ../../LuaSL
17 ;;
18
19 *)
20 echo "_______________ STARTING LuaSL _______________"
21 ../../LuaSL &
22 sleep 1
23 echo "_______________ STARTING love _______________"
24 ../../love
25 ;;
26
27esac