This website works better with JavaScript.
Home
Help
Sign In
VCVRack
/
library
mirror of
https://github.com/VCVRack/library.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
0
Wiki
Activity
Browse Source
Fix name of run function in common.py.
v1
Andrew Belt
5 years ago
parent
72e9d531c0
commit
ddb1dee4da
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
scripts/common.py
+ 1
- 1
scripts/common.py
View File
@@ -8,7 +8,7 @@ def system(cmd):
raise Exception(f"Command failed with error {result.returncode}: {cmd}")
def
system
(cmd):
def
run
(cmd):
print(cmd)
result = subprocess.run(cmd, shell=True, stdout=subprocess.PIPE)
if result.returncode != 0:
Write
Preview
Loading…
Cancel
Save