From 88e117974e50430cc36242dcf3f1e4193bc7a13a Mon Sep 17 00:00:00 2001 From: sammyette <38820196+TorchedSammy@users.noreply.github.com> Date: Sun, 16 May 2021 16:17:55 -0400 Subject: [PATCH] chore: add todo comment for exec function --- lua.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lua.go b/lua.go index 5a0e665..ffe263c 100644 --- a/lua.go +++ b/lua.go @@ -146,6 +146,7 @@ func hshexec(L *lua.LState) int { // syscall.Exec requires an absolute path to a binary // path, args, string slice of environments + // TODO: alternative for windows syscall.Exec(cmdPath, cmdArgs, os.Environ()) - return 0 + return 0 // random thought: does this ever return? }