aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--install.bat2
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
40local function exec(cmd) 40local 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
44end 44end
45 45
46local function exists(filename) 46local function exists(filename)