From ddb1dee4da2db39c8173ff242e00dcba39219994 Mon Sep 17 00:00:00 2001 From: Andrew Belt Date: Thu, 9 Apr 2020 16:54:54 -0400 Subject: [PATCH] Fix name of run function in common.py. --- scripts/common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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: