diff options
author | Hisham Muhammad <hisham@gobolinux.org> | 2022-02-16 18:24:06 -0300 |
---|---|---|
committer | Hisham Muhammad <hisham@gobolinux.org> | 2022-02-17 02:16:50 -0300 |
commit | 0b15b5f450b5e1e569255b41457b187154e39e5b (patch) | |
tree | 7e5599164045d423535f2f4697e4b9244b55031c /install.bat | |
parent | c3d13d216ae6be883491b929c1961b84e739a621 (diff) | |
download | luarocks-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.bat | 2 |
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) | |||
80 | end | 80 | end |
81 | 81 | ||
82 | local function mkdir (dir) | 82 | local function mkdir (dir) |
83 | return exec([[.\win32\tools\mkdir -p "]]..dir..[[" >NUL]]) | 83 | return exec([[MKDIR "]]..dir..[[" >NUL]]) |
84 | end | 84 | end |
85 | 85 | ||
86 | -- does the current user have admin privileges ( = elevated) | 86 | -- does the current user have admin privileges ( = elevated) |