change how we ask hg for the status

closes #1035
Thanks @raleighr3
This commit is contained in:
Benjamin Staneck 2016-07-30 00:36:32 +02:00
parent 07fb26c4a5
commit 13fd41eb82

4
vendor/clink.lua vendored
View File

@ -142,8 +142,8 @@ end
-- @return {bool} -- @return {bool}
--- ---
function get_hg_status() function get_hg_status()
for line in io.popen("hg status"):lines() do for line in io.popen("hg status -0"):lines() do
return false return false
end end
return true return true
end end