diff options
-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) |