diff options
author | Thijs Schreijer <thijs@thijsschreijer.nl> | 2013-04-09 14:23:30 +0200 |
---|---|---|
committer | Thijs Schreijer <thijs@thijsschreijer.nl> | 2013-04-09 14:23:30 +0200 |
commit | d2f489e10d828638aa5ab0178060051989873149 (patch) | |
tree | 0071dc05866fba5a127a472fd128a1430de18fe4 /win32/bin/luarocksw.bat | |
parent | b974f6d3841b24596c4cbc2c27f9f6572afe52d5 (diff) | |
download | luarocks-d2f489e10d828638aa5ab0178060051989873149.tar.gz luarocks-d2f489e10d828638aa5ab0178060051989873149.tar.bz2 luarocks-d2f489e10d828638aa5ab0178060051989873149.zip |
fixes in registry template and batchfile luarocksw.bat
Diffstat (limited to '')
-rw-r--r-- | win32/bin/luarocksw.bat | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/win32/bin/luarocksw.bat b/win32/bin/luarocksw.bat index a0144c44..313508d4 100644 --- a/win32/bin/luarocksw.bat +++ b/win32/bin/luarocksw.bat | |||
@@ -2,14 +2,14 @@ | |||
2 | setlocal | 2 | setlocal |
3 | SET MYPATH=%~dp0 | 3 | SET MYPATH=%~dp0 |
4 | 4 | ||
5 | 5 | IF NOT [%1]==[] GOTO LETSGO | |
6 | ECHO Same as 'luarocks' command, except this | 6 | ECHO Same as 'luarocks' command, except this |
7 | ECHO command will pause after completion, allowing for | 7 | ECHO command will pause after completion, allowing for |
8 | ECHO examination of output. | 8 | ECHO examination of output. |
9 | ECHO | 9 | ECHO. |
10 | ECHO For LuaRocks help use: | 10 | ECHO For LuaRocks help use: |
11 | ECHO LUAROCKS HELP | 11 | ECHO LUAROCKS HELP |
12 | ECHO | 12 | ECHO. |
13 | ECHO OPTIONS specific for LUAROCKSW: | 13 | ECHO OPTIONS specific for LUAROCKSW: |
14 | ECHO REMOVEALL is a command specific to this batch file | 14 | ECHO REMOVEALL is a command specific to this batch file |
15 | ECHO the option takes a FULL ROCKSPEC filename and then | 15 | ECHO the option takes a FULL ROCKSPEC filename and then |
@@ -25,9 +25,10 @@ ECHO luarocksw removeall "c:\somedir\modulename-1.0-1.rockspec" | |||
25 | ECHO will execute: | 25 | ECHO will execute: |
26 | ECHO luarocks remove modulename | 26 | ECHO luarocks remove modulename |
27 | ECHO and will remove all versions of this package | 27 | ECHO and will remove all versions of this package |
28 | ECHO. | ||
29 | GOTO END | ||
28 | 30 | ||
29 | 31 | :LETSGO | |
30 | |||
31 | REM if REMOVEALL command then info must be stripped from the parameter | 32 | REM if REMOVEALL command then info must be stripped from the parameter |
32 | if [%1]==[removeall] goto REMOVEALL | 33 | if [%1]==[removeall] goto REMOVEALL |
33 | 34 | ||