use relative sh path

This commit is contained in:
Daniel Poelzleithner 2022-01-12 20:46:41 +01:00
parent f65cdd282d
commit e2a27af6e7
1 changed files with 1 additions and 1 deletions

View File

@ -5425,7 +5425,7 @@ function spawnShell
command, -- the shell command
... -- additonal arguments
)
return spawn( agent, '/bin/sh', '-c', command, '/bin/sh', ... )
return spawn( agent, 'sh', '-c', command, 'sh', ... )
end