mirror of
https://github.com/cmderdev/cmder.git
synced 2025-01-11 00:39:08 +08:00
Merge pull request #1101 from alexandr-san4ez/development
Added closing process in get_git_status
This commit is contained in:
commit
e36db3eb3d
5
vendor/clink.lua
vendored
5
vendor/clink.lua
vendored
@ -203,9 +203,12 @@ end
|
|||||||
-- @return {bool}
|
-- @return {bool}
|
||||||
---
|
---
|
||||||
function get_git_status()
|
function get_git_status()
|
||||||
for line in io.popen("git status --porcelain 2>nul"):lines() do
|
local file = io.popen("git status --no-lock-index --porcelain 2>nul")
|
||||||
|
for line in file:lines() do
|
||||||
|
file:close()
|
||||||
return false
|
return false
|
||||||
end
|
end
|
||||||
|
file:close()
|
||||||
return true
|
return true
|
||||||
end
|
end
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user