Browse Source

Fix name of run function in common.py.

v1
Andrew Belt 5 years ago
parent
commit
ddb1dee4da
1 changed files with 1 additions and 1 deletions
  1. +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:


Loading…
Cancel
Save