We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b4026e7 commit 74c23caCopy full SHA for 74c23ca
poethepoet/task/shell.py
@@ -48,7 +48,7 @@ def _handle_run(
48
f"Couldn't locate interpreter executable for {config_value!r} to run "
49
"shell task. "
50
)
51
- if self._is_windows and config_value in ("posix", "bash"):
+ if self._is_windows and set(config_value).issubset({"posix", "bash"}):
52
message += "Installing Git Bash or using WSL should fix this."
53
else:
54
message += "Some dependencies may be missing from your system."
0 commit comments