diff options
author | Thijs Schreijer <thijs@thijsschreijer.nl> | 2013-04-14 23:11:56 +0200 |
---|---|---|
committer | Thijs Schreijer <thijs@thijsschreijer.nl> | 2013-04-14 23:11:56 +0200 |
commit | 0b190453d3adca5f449cbb095510137b35b76163 (patch) | |
tree | 8a4a9507b8be25d3866a7a60ac60d22f811061ea | |
parent | ec304affa20abc18ba0a6481d760d2714597318f (diff) | |
download | luarocks-0b190453d3adca5f449cbb095510137b35b76163.tar.gz luarocks-0b190453d3adca5f449cbb095510137b35b76163.tar.bz2 luarocks-0b190453d3adca5f449cbb095510137b35b76163.zip |
fix minor bug in windows registry loader
-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 |