Merge pull request #974 from janschulz/fix_gitbranch

Fix git branch name never shown as dirty
This commit is contained in:
Benjamin Staneck 2016-06-02 20:14:15 +02:00
commit 346680b52e

6
vendor/clink.lua vendored
View File

@ -193,7 +193,11 @@ end
-- @return {bool}
---
function get_git_status()
return io.popen("git diff --quiet --ignore-submodules HEAD 2>nul")
local file = io.popen("git diff --quiet --ignore-submodules HEAD 2>nul")
-- This will get a table with some return stuff
-- rc[3] will be the signal, 0 or 1
local rc = {file:close()}
return rc[3] == 0
end
function git_prompt_filter()