diff --git a/pkg/utils/command/command_helper.go b/pkg/utils/command/command_helper.go index d83c979..23f223e 100644 --- a/pkg/utils/command/command_helper.go +++ b/pkg/utils/command/command_helper.go @@ -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:] }