Skip to content

Commit

Permalink
change how we ask hg for the status
Browse files Browse the repository at this point in the history
closes #1035
Thanks @raleighr3
  • Loading branch information
Stanzilla committed Jul 29, 2016
1 parent 07fb26c commit 13fd41e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions vendor/clink.lua
Original file line number Diff line number Diff line change
Expand Up @@ -142,8 +142,8 @@ end
-- @return {bool}
---
function get_hg_status()
for line in io.popen("hg status"):lines() do
return false
for line in io.popen("hg status -0"):lines() do
return false
end
return true
end
Expand Down

0 comments on commit 13fd41e

Please sign in to comment.