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]:
445
445
# unqualified cmd.exe otherwise.
446
446
if WINDOWS :
447
447
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 .
451
451
else :
452
- shell = "/bin/bash "
452
+ shell = "/bin/sh "
453
453
454
454
return {
455
455
# TODO: we document 'debug' but it's not truly implemented outside
You can’t perform that action at this time.
0 commit comments