diff options
author | Hisham Muhammad <hisham@gobolinux.org> | 2013-11-12 18:49:43 -0200 |
---|---|---|
committer | Hisham Muhammad <hisham@gobolinux.org> | 2013-11-12 18:49:43 -0200 |
commit | 0643c2c5b117a50cda26d6305a641e138ddf2399 (patch) | |
tree | cc9d22f66f281226c50b2aa6c4ed8513f4836fc9 | |
parent | e05effd09a8e2df4e7cff301392fba0933c5eed7 (diff) | |
parent | f06853ce8818a1b337b68fec710c8180e37e0b68 (diff) | |
download | luarocks-0643c2c5b117a50cda26d6305a641e138ddf2399.tar.gz luarocks-0643c2c5b117a50cda26d6305a641e138ddf2399.tar.bz2 luarocks-0643c2c5b117a50cda26d6305a641e138ddf2399.zip |
Merge branch 'master' of github.com:keplerproject/luarocks
-rw-r--r-- | src/luarocks/fs/win32/tools.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/luarocks/fs/win32/tools.lua b/src/luarocks/fs/win32/tools.lua index e08de97a..979aaff4 100644 --- a/src/luarocks/fs/win32/tools.lua +++ b/src/luarocks/fs/win32/tools.lua | |||
@@ -42,7 +42,7 @@ end | |||
42 | function current_dir() | 42 | function current_dir() |
43 | local current = cfg.cache_pwd | 43 | local current = cfg.cache_pwd |
44 | if not current then | 44 | if not current then |
45 | local pipe = io.popen(vars.PWD) | 45 | local pipe = io.popen(fs.Q(vars.PWD)) |
46 | current = pipe:read("*l") | 46 | current = pipe:read("*l") |
47 | pipe:close() | 47 | pipe:close() |
48 | cfg.cache_pwd = current | 48 | cfg.cache_pwd = current |