Skip to content

Commit

Permalink
fix(python): changed venv start command from source to . to support h…
Browse files Browse the repository at this point in the history
…eadless terminal
  • Loading branch information
christopherpickering committed Sep 14, 2022
1 parent 14d3ffa commit 0a00981
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion runner/scripts/em_python.py
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ def __pip_install(self) -> None:
# install deps with poetry
cmd = (
f'cd "{self.job_path}" && '
+ f'source "{self.env_name}/bin/activate" && '
+ f'. "{self.env_name}/bin/activate" && '
+ "poetry_env/bin/poetry install && "
+ "deactivate"
)
Expand Down

0 comments on commit 0a00981

Please sign in to comment.