refactor: gomod

This commit is contained in:
Smirnov Olexander 2022-06-03 13:42:58 +03:00
parent 4993aec570
commit 40fe09ed63

View file

@ -12,8 +12,10 @@ return function(...)
if retval ~= 0 then if retval ~= 0 then
print("command exited with code " .. retval) print("command exited with code " .. retval)
return return
else
print "command runs successfully"
end end
end, end,
}) })
:sync() :start()
end end