diff options
author | TinWoodman92 <chrhodgden@gmail.com> | 2023-05-30 18:37:33 -0500 |
---|---|---|
committer | TinWoodman92 <chrhodgden@gmail.com> | 2023-05-30 18:37:33 -0500 |
commit | 5f1696719ec36979005f5792a4049b30e5a7d9b2 (patch) | |
tree | a68afab96eecb0122104e4974a35740b71c998e6 /launcher_py.py | |
parent | 69a427749a4b7c58b3a58ea43aadee985dc2e069 (diff) |
consolidated launchers for multithread.
Diffstat (limited to 'launcher_py.py')
-rw-r--r-- | launcher_py.py | 17 |
1 files changed, 0 insertions, 17 deletions
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") - |