From beca8b7e19852b10dfcaff11857364f113c41540 Mon Sep 17 00:00:00 2001 From: Hanno Rein Date: Wed, 19 Jul 2023 13:40:04 -0400 Subject: [PATCH] removed -l flag from command in Popen. Closes #14. --- python/swiftest/swiftest/simulation_class.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/swiftest/swiftest/simulation_class.py b/python/swiftest/swiftest/simulation_class.py index 399ab0d38..5227a8c48 100644 --- a/python/swiftest/swiftest/simulation_class.py +++ b/python/swiftest/swiftest/simulation_class.py @@ -405,7 +405,7 @@ def _run_swiftest_driver(self): # Get current environment variables env = os.environ.copy() - cmd = f"{env['SHELL']} -l {self.driver_script}" + cmd = f"{env['SHELL']} {self.driver_script}" def _type_scrub(output_data):