From 09f32d4f845511638ec162be426eeffb51036b6b Mon Sep 17 00:00:00 2001 From: Jesse Duffield Date: Mon, 21 Dec 2020 09:37:48 +1100 Subject: add secureexec file for getting around windows checking for a binary first in the current dir --- scripts/push_new_patch/main.go | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'scripts/push_new_patch') diff --git a/scripts/push_new_patch/main.go b/scripts/push_new_patch/main.go index 01b844c8d..40d95d9a0 100755 --- a/scripts/push_new_patch/main.go +++ b/scripts/push_new_patch/main.go @@ -11,9 +11,10 @@ import ( "io/ioutil" "log" "os" - "os/exec" "strconv" "strings" + + "github.com/jesseduffield/lazygit/pkg/secureexec" ) func main() { @@ -49,7 +50,7 @@ func main() { func runCommand(args ...string) { fmt.Println(strings.Join(args, " ")) - cmd := exec.Command(args[0], args[1:]...) + cmd := secureexec.Command(args[0], args[1:]...) cmd.Stdout = os.Stdout cmd.Stderr = os.Stderr err := cmd.Start() -- cgit v1.2.3