Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 12 additions & 1 deletion poetry/utils/shell.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
from shellingham import detect_shell

from ._compat import WINDOWS
from ._compat import Path
Comment thread
abn marked this conversation as resolved.
from .env import VirtualEnv


Expand Down Expand Up @@ -42,7 +43,17 @@ def get(cls): # type: () -> Shell
try:
name, path = detect_shell(os.getpid())
except (RuntimeError, ShellDetectionFailure):
raise RuntimeError("Unable to detect the current shell.")
shell = None

if os.name == "posix":
shell = os.environ.get("SHELL")
elif os.name == "nt":
shell = os.environ.get("COMSPEC")

if not shell:
raise RuntimeError("Unable to detect the current shell.")

name, path = Path(shell).stem, shell

cls._shell = cls(name, path)

Expand Down