add secureexec file for getting around windows checking for a binary first in the current dir

This commit is contained in:
Jesse Duffield 2020-12-21 09:37:48 +11:00
parent 6f0f70bd92
commit 09f32d4f84
20 changed files with 344 additions and 93 deletions

View file

@ -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()