marinone94
commited on
Commit
•
2786d7b
1
Parent(s):
6e0a1d3
fix path
Browse files
run_sm.py
CHANGED
@@ -12,7 +12,7 @@ def main():
|
|
12 |
print("Running", cmd)
|
13 |
output1 = subprocess.run(cmd.split(), stdout=subprocess.PIPE)
|
14 |
print(output1.stdout.decode())
|
15 |
-
cmd = f'sh {script_name} {repo_name}'
|
16 |
print("Running", cmd)
|
17 |
output2 = subprocess.run(cmd.split(), stdout=subprocess.PIPE)
|
18 |
print(output2.stdout.decode())
|
|
|
12 |
print("Running", cmd)
|
13 |
output1 = subprocess.run(cmd.split(), stdout=subprocess.PIPE)
|
14 |
print(output1.stdout.decode())
|
15 |
+
cmd = f'sh {repo_name}/{script_name} {repo_name}'
|
16 |
print("Running", cmd)
|
17 |
output2 = subprocess.run(cmd.split(), stdout=subprocess.PIPE)
|
18 |
print(output2.stdout.decode())
|