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

2
vendor/clink.lua vendored
View File

@ -142,7 +142,7 @@ end
-- @return {bool}
---
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
end
return true