diff options
author | Hisham Muhammad <hisham@gobolinux.org> | 2013-09-26 12:54:36 -0700 |
---|---|---|
committer | Hisham Muhammad <hisham@gobolinux.org> | 2013-09-26 12:54:36 -0700 |
commit | 289366df6a32831f0f4d8a01668251b79b32b7eb (patch) | |
tree | 2c7367cefc3fac38d3818346014493deceea0939 /install.bat | |
parent | 4a3c08701e463aa811b40fe61607d246209c5688 (diff) | |
parent | a988293d48ea993327cec75111514424bfcc2c0a (diff) | |
download | luarocks-289366df6a32831f0f4d8a01668251b79b32b7eb.tar.gz luarocks-289366df6a32831f0f4d8a01668251b79b32b7eb.tar.bz2 luarocks-289366df6a32831f0f4d8a01668251b79b32b7eb.zip |
Merge pull request #156 from Tieske/Win_installer_5v2
update windows installer to work on Lua 5.2
Diffstat (limited to 'install.bat')
-rw-r--r-- | install.bat | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/install.bat b/install.bat index abf680a4..c640fa9a 100644 --- a/install.bat +++ b/install.bat | |||
@@ -40,7 +40,7 @@ end | |||
40 | local function exec(cmd) | 40 | local function exec(cmd) |
41 | --print(cmd) | 41 | --print(cmd) |
42 | local status = os.execute(cmd) | 42 | local status = os.execute(cmd) |
43 | return status == 0 | 43 | return (status == 0 or status == true) -- compat 5.1/5.2 |
44 | end | 44 | end |
45 | 45 | ||
46 | local function exists(filename) | 46 | local function exists(filename) |