tangled
alpha
login
or
join now
olexsmir.xyz
/
gopher.nvim
[mirror]
Make your go dev experience better
github.com/olexsmir/gopher.nvim
neovim
golang
5
fork
atom
overview
issues
pulls
pipelines
fix(installer): check return command value
olexsmir.xyz
3 years ago
ca1bc4bd
08f3d2f8
options
unified
split
Changed files
+1
-1
lua
gopher
installer.lua
+1
-1
lua/gopher/installer.lua
···
11
11
command = "go",
12
12
args = { "install", url },
13
13
on_exit = function(_, ret_val)
14
14
-
if ret_val ~= nil then
14
14
+
if ret_val ~= 0 then
15
15
print("command exited with code " .. ret_val)
16
16
return
17
17
end