From b0f86fab7bd8d67de06299a3bce3d900467373eb Mon Sep 17 00:00:00 2001 From: Warrick Ball Date: Mon, 26 Jun 2023 22:45:41 +0100 Subject: [PATCH 1/2] Update Git repo location in README.md I followed the instructions and cloned from the Purdue repo and ran into an issue (using `.not.` on an integer) that appears to have been fixed in the GitHub version, so I presume the README needs to be updated. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 3671832cb..2cb42888d 100644 --- a/README.md +++ b/README.md @@ -46,7 +46,7 @@ Parallelization in Swiftest is done with OpenMP. Version 3.1.4 or higher is nece The easiest way to get Swiftest on your machine is to clone the GitHub repository. To do so, open a terminal window and type the following: ``` -$ git clone https://github.itap.purdue.edu/MintonGroup/swiftest.git +$ git clone https://github.com/carlislewishard/swiftest.git ``` If your cloned version is not already set to the master branch: From beca8b7e19852b10dfcaff11857364f113c41540 Mon Sep 17 00:00:00 2001 From: Hanno Rein Date: Wed, 19 Jul 2023 13:40:04 -0400 Subject: [PATCH 2/2] 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):