Commit de23c5c6 by Sébastien Eustace Committed by GitHub

Fix shell command for bash (#1621)

parent e8b6e15e
......@@ -58,7 +58,9 @@ class Shell:
self._path, ["-i"], dimensions=(terminal.height, terminal.width)
)
c.setecho(False)
if not self._name == "bash":
c.setecho(False)
activate_script = self._get_activate_script()
bin_dir = "Scripts" if WINDOWS else "bin"
activate_path = env.path / bin_dir / activate_script
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment