From 40fe09ed639386f9e9554c78729fb565c769d107 Mon Sep 17 00:00:00 2001 From: Smirnov Olexander Date: Fri, 3 Jun 2022 13:42:58 +0300 Subject: [PATCH] refactor: gomod --- lua/gopher/gomod.lua | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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