app/launch: set argv when launching shell
release / release (push) Has been cancelled Details

Signed-off-by: Ophestra Umiker <cat@ophivana.moe>
This commit is contained in:
Ophestra Umiker 2024-09-04 11:04:16 +09:00
parent 743b6afbbb
commit 5c3e7cf664
Signed by: cat
SSH Key Fingerprint: SHA256:gQ67O0enBZ7UdZypgtspB2FDM1g3GVw8nX0XSdcFw8Q
1 changed files with 2 additions and 0 deletions

View File

@ -60,6 +60,8 @@ func Early(printVersion bool) {
fmt.Println("No command was specified and $SHELL was unset")
os.Exit(1)
}
argv = []string{p}
}
if err := syscall.Exec(p, argv, os.Environ()); err != nil {