aboutsummaryrefslogtreecommitdiff
path: root/install.bat
diff options
context:
space:
mode:
authorHisham Muhammad <hisham@gobolinux.org>2022-02-16 18:24:06 -0300
committerHisham Muhammad <hisham@gobolinux.org>2022-02-17 02:16:50 -0300
commit0b15b5f450b5e1e569255b41457b187154e39e5b (patch)
tree7e5599164045d423535f2f4697e4b9244b55031c /install.bat
parentc3d13d216ae6be883491b929c1961b84e739a621 (diff)
downloadluarocks-0b15b5f450b5e1e569255b41457b187154e39e5b.tar.gz
luarocks-0b15b5f450b5e1e569255b41457b187154e39e5b.tar.bz2
luarocks-0b15b5f450b5e1e569255b41457b187154e39e5b.zip
win32: use Windows's own MKDIR and RMDIR
Diffstat (limited to 'install.bat')
-rw-r--r--install.bat2
1 files changed, 1 insertions, 1 deletions
diff --git a/install.bat b/install.bat
index 0100ca63..7a5df9cd 100644
--- a/install.bat
+++ b/install.bat
@@ -80,7 +80,7 @@ local function exists(filename)
80end 80end
81 81
82local function mkdir (dir) 82local function mkdir (dir)
83 return exec([[.\win32\tools\mkdir -p "]]..dir..[[" >NUL]]) 83 return exec([[MKDIR "]]..dir..[[" >NUL]])
84end 84end
85 85
86-- does the current user have admin privileges ( = elevated) 86-- does the current user have admin privileges ( = elevated)