Skip to content

Commit 13fd41e

Browse files
committed
change how we ask hg for the status
closes #1035 Thanks @raleighr3
1 parent 07fb26c commit 13fd41e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

vendor/clink.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -142,8 +142,8 @@ end
142142
-- @return {bool}
143143
---
144144
function get_hg_status()
145-
for line in io.popen("hg status"):lines() do
146-
return false
145+
for line in io.popen("hg status -0"):lines() do
146+
return false
147147
end
148148
return true
149149
end

0 commit comments

Comments
 (0)