diff --git a/scripts/common.py b/scripts/common.py index ed64bdff..845c8d02 100644 --- a/scripts/common.py +++ b/scripts/common.py @@ -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: