From 28d8fc4149adda80087539f60921ce1096a10e61 Mon Sep 17 00:00:00 2001 From: mountain Date: Fri, 26 May 2023 16:26:40 +0900 Subject: [PATCH] =?UTF-8?q?argument=EC=97=90=20./=EA=B0=80=20=EA=B3=84?= =?UTF-8?q?=EC=86=8D=20=EB=B6=99=EB=8A=94=20=EB=AC=B8=EC=A0=9C=20=EC=88=98?= =?UTF-8?q?=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- client/operation.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/operation.go b/client/operation.go index a708f9d..21e14e0 100644 --- a/client/operation.go +++ b/client/operation.go @@ -133,7 +133,7 @@ func prepareProcessLaunch(req *shared.StartProcessRequest) *procmeta { fi, err := os.Stat(verpath) if err == nil && fi.IsDir() { - cmd := exec.Command("./"+args[0], args[1:]...) + cmd := exec.Command(args[0], args[1:]...) cmd.Dir = verpath stdin, _ := cmd.StdinPipe()