diff --git a/lua/gopher/gomod.lua b/lua/gopher/gomod.lua index f05cf80..8106b0c 100644 --- a/lua/gopher/gomod.lua +++ b/lua/gopher/gomod.lua @@ -12,8 +12,10 @@ return function(...) if retval ~= 0 then print("command exited with code " .. retval) return + else + print "command runs successfully" end end, }) - :sync() + :start() end