Skip to content

Commit

Permalink
Merge branch version/0-44-0-RC1 to adopt changes from PR #2999
Browse files Browse the repository at this point in the history
  • Loading branch information
as-builds committed Jan 9, 2024
2 parents 9158929 + eb39e1a commit 6938345
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/subshell/subshell.go
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ func DetectShell(cfg sscommon.Configurable) (string, string) {

if !isKnownShell {
logging.Debug("Unsupported shell: %s, defaulting to OS default.", name)
if !strings.EqualFold(name, "powershell") {
if !strings.EqualFold(name, "powershell") && name != "sh" {
rollbar.Error("Unsupported shell: %s", name) // we just want to know what this person is using
}
switch runtime.GOOS {
Expand Down

0 comments on commit 6938345

Please sign in to comment.