From 5f1696719ec36979005f5792a4049b30e5a7d9b2 Mon Sep 17 00:00:00 2001 From: TinWoodman92 Date: Tue, 30 May 2023 18:37:33 -0500 Subject: consolidated launchers for multithread. --- launcher_py.py | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100644 launcher_py.py (limited to 'launcher_py.py') diff --git a/launcher_py.py b/launcher_py.py deleted file mode 100644 index ae85727..0000000 --- a/launcher_py.py +++ /dev/null @@ -1,17 +0,0 @@ -import os -from subprocess import * - -print(os.getcwd()) - -tar_fil = os.path.join(os.getcwd(),'source_file.py') -print(tar_fil) -if os.path.exists(tar_fil): - python_cmd = 'Python' - run( - f'{python_cmd} {tar_fil}', - cwd = os.getcwd(), - start_new_session = True - ) - -print("end launcher") - -- cgit v1.2.3