Fix pushd error

This commit is contained in:
Spencer Owen 2023-12-19 12:38:17 -07:00 committed by GitHub
parent 6f722b3506
commit a64c488bb7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -138,7 +138,7 @@ func ExecuteScripts(scriptDirectory string) {
scanner.Scan()
shebang := scanner.Text()
interpreter := "/bin/sh"
interpreter := "/bin/bash"
if strings.HasPrefix(shebang, "#!") {
interpreter = shebang[2:]
}