From 8c9e0520d12ca5cb61cd58c1725c79f994172189 Mon Sep 17 00:00:00 2001 From: David A Minton Date: Thu, 25 May 2023 11:32:33 -0400 Subject: [PATCH] Removed the line in the executable that calls the shell default shell configuration file temporarily until I determine if it is necessary --- 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 0ae7f540b..10a869ec1 100644 --- a/python/swiftest/swiftest/simulation_class.py +++ b/python/swiftest/swiftest/simulation_class.py @@ -2779,7 +2779,7 @@ def write_param(self, self.driver_script = os.path.join(self.simdir, "swiftest_driver.sh") with open(self.driver_script, 'w') as f: f.write(f"#{self._shell_full}\n") - f.write(f"source ~/.{self._shell}rc\n") + #f.write(f"source ~/.{self._shell}rc\n") f.write(f"cd {self.simdir}\n") f.write(f"{str(self.driver_executable)} {self.integrator} {str(self.param_file)} compact\n")