diff options
author | Thijs Schreijer <thijs@thijsschreijer.nl> | 2013-04-14 14:13:12 -0700 |
---|---|---|
committer | Thijs Schreijer <thijs@thijsschreijer.nl> | 2013-04-14 14:13:12 -0700 |
commit | 6cc2c255777d77a73197ed6b960f898391dabfe6 (patch) | |
tree | 8a4a9507b8be25d3866a7a60ac60d22f811061ea | |
parent | ec304affa20abc18ba0a6481d760d2714597318f (diff) | |
parent | 0b190453d3adca5f449cbb095510137b35b76163 (diff) | |
download | luarocks-2.0.13.tar.gz luarocks-2.0.13.tar.bz2 luarocks-2.0.13.zip |
Merge pull request #123 from Tieske/masterv2.0.13
minor fix
-rw-r--r-- | win32/bin/create_reg_file.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win32/bin/create_reg_file.lua b/win32/bin/create_reg_file.lua index df0b7491..2eb7583a 100644 --- a/win32/bin/create_reg_file.lua +++ b/win32/bin/create_reg_file.lua | |||
@@ -17,7 +17,7 @@ end | |||
17 | 17 | ||
18 | -- cleanup filepath, remove all double backslashes | 18 | -- cleanup filepath, remove all double backslashes |
19 | while f:match("\\\\") do | 19 | while f:match("\\\\") do |
20 | f:gsub("\\\\", "\\") | 20 | f = f:gsub("\\\\", "\\") |
21 | end | 21 | end |
22 | 22 | ||
23 | -- extract path and name from argument | 23 | -- extract path and name from argument |