From 644e945c7966cdf4c1094f4719691ee9557e7b03 Mon Sep 17 00:00:00 2001 From: Caleb Herpin Date: Wed, 28 Jul 2021 17:42:43 -0500 Subject: [PATCH] Fixed small error --- share/trick/pymods/trick/conftest.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/share/trick/pymods/trick/conftest.py b/share/trick/pymods/trick/conftest.py index 9817fc64..c94d68d8 100644 --- a/share/trick/pymods/trick/conftest.py +++ b/share/trick/pymods/trick/conftest.py @@ -72,10 +72,9 @@ trick.exec_set_freeze_command(True)""") # pause("Before find") # subprocess.run(cmd, shell=True) # pause("After find") - if not os.path.exists(os.path.join(pathToSim, params.get_sim_name())): - build_cmd = f"echo \"cd {pathToSim} && {params.get_trick_home()}/bin/trick-CP\" | /bin/bash" - print("....................Running:", build_cmd) - subprocess.run(build_cmd, shell=True) + build_cmd = f"echo \"cd {pathToSim} && {params.get_trick_home()}/bin/trick-CP\" | /bin/bash" + print("....................Running:", build_cmd) + subprocess.run(build_cmd, shell=True) # pause("After build before start") if params.get_start_sim():