aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/project/utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'project/utils.py')
-rw-r--r--project/utils.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/project/utils.py b/project/utils.py
index 868592a..f40767a 100644
--- a/project/utils.py
+++ b/project/utils.py
@@ -47,9 +47,9 @@ def cd(path):
os.chdir(cwd)
-def run(cmd_line):
+def run(cmd_line, **kwargs):
logging.info('Running executable: %s', cmd_line)
- return subprocess.run(cmd_line, check=True)
+ return subprocess.run(cmd_line, check=True, **kwargs)
@contextmanager