aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bin/alv-copilot.bat6
-rw-r--r--rockspecs/alive-scm-1.rockspec11
-rwxr-xr-xrockspecs/gen-rockspec.sh13
3 files changed, 1 insertions, 29 deletions
diff --git a/bin/alv-copilot.bat b/bin/alv-copilot.bat
deleted file mode 100644
index 58c1bf9..0000000
--- a/bin/alv-copilot.bat
+++ /dev/null
@@ -1,6 +0,0 @@
-@echo off
-setlocal
-set PATH=%PATH%;%~dp0\lua\lua\bin
-set LUA_PATH=%LUA_PATH%;%~dp0\?.lua;%~dp0\alive\?\init.lua
-moon %~dp0\init.moon %*
-exit /b %ERRORLEVEL%
diff --git a/rockspecs/alive-scm-1.rockspec b/rockspecs/alive-scm-1.rockspec
index e9795fd..a416842 100644
--- a/rockspecs/alive-scm-1.rockspec
+++ b/rockspecs/alive-scm-1.rockspec
@@ -78,15 +78,4 @@ build = {
"bin/alv-copilot"
},
},
-
- platforms = {
- win32 = {
- install = {
- bin = {
- "bin/alv",
- "bin/alv-copilot.bat",
- },
- },
- },
- },
}
diff --git a/rockspecs/gen-rockspec.sh b/rockspecs/gen-rockspec.sh
index b76394a..d832bb1 100755
--- a/rockspecs/gen-rockspec.sh
+++ b/rockspecs/gen-rockspec.sh
@@ -1,5 +1,5 @@
#!/bin/sh
-VERSION="$1"
+VERSION="${1:-scm}"
REVISION="${2:-1}"
if [ "$VERSION" = scm ]; then
@@ -63,16 +63,5 @@ $(list_modules alv-lib)
"bin/alv-copilot"
},
},
-
- platforms = {
- win32 = {
- install = {
- bin = {
- "bin/alv",
- "bin/alv-copilot.bat",
- },
- },
- },
- },
}
STOP