From 5dc05d2c3704823df520798afb50274808fb588c Mon Sep 17 00:00:00 2001 From: Guy Salton Date: Sat, 8 Jul 2023 01:32:47 +0300 Subject: [PATCH] utils/shell: add support for `vox` in `xonsh` shell --- src/poetry/utils/shell.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/poetry/utils/shell.py b/src/poetry/utils/shell.py index d60998f0b0e..290a62c09c1 100644 --- a/src/poetry/utils/shell.py +++ b/src/poetry/utils/shell.py @@ -108,6 +108,8 @@ def activate(self, env: VirtualEnv) -> int | None: if self._name == "zsh": # Under ZSH the source command should be invoked in zsh's bash emulator c.sendline(f"emulate bash -c '. {shlex.quote(str(activate_path))}'") + elif self._name == "xonsh": + c.sendline(f"vox activate {shlex.quote(str(env.path))}") else: cmd = f"{self._get_source_command()} {shlex.quote(str(activate_path))}" if self._name in ["fish", "nu"]: