File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -445,11 +445,11 @@ def global_defaults() -> Dict[str, Any]:
445445 # unqualified cmd.exe otherwise.
446446 if WINDOWS :
447447 shell = os .environ .get ("COMSPEC" , "cmd.exe" )
448- # Else, assume Unix, most distros of which have /bin/bash available.
449- # TODO: consider an automatic fallback to /bin/sh for systems lacking
450- # /bin/bash; however users may configure run.shell quite easily, so.. .
448+ # Else, assume a POSIX compatible Unix, where /bin/sh is mandated by
449+ # the standard. Users on more exotic platforms are expected to configure
450+ # run.shell manually .
451451 else :
452- shell = "/bin/bash "
452+ shell = "/bin/sh "
453453
454454 return {
455455 # TODO: we document 'debug' but it's not truly implemented outside
You can’t perform that action at this time.
0 commit comments