diff options
Diffstat (limited to 'internal/app/launch.machinectl.go')
| -rw-r--r-- | internal/app/launch.machinectl.go | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/internal/app/launch.machinectl.go b/internal/app/launch.machinectl.go index 32f06740..c1d26101 100644 --- a/internal/app/launch.machinectl.go +++ b/internal/app/launch.machinectl.go @@ -1,7 +1,6 @@ package app import ( - "os/exec" "strings" "git.ophivana.moe/security/fortify/internal/fmsg" @@ -31,7 +30,7 @@ func (a *app) commandBuilderMachineCtl(shimEnv string) (args []string) { args = append(args, "--", ".host") // /bin/sh -c - if sh, err := exec.LookPath("sh"); err != nil { + if sh, err := a.os.LookPath("sh"); err != nil { // hardcode /bin/sh path since it exists more often than not args = append(args, "/bin/sh", "-c") } else { |
