From 472a98200991567a7932cb956007647ef141e4ad Mon Sep 17 00:00:00 2001 From: "David R. MacIver" Date: Mon, 16 Apr 2018 12:31:02 +0100 Subject: [PATCH] Add debugging for running scripts --- tooling/src/hypothesistooling/scripts.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tooling/src/hypothesistooling/scripts.py b/tooling/src/hypothesistooling/scripts.py index 00cc8cc915..89e4ed6051 100644 --- a/tooling/src/hypothesistooling/scripts.py +++ b/tooling/src/hypothesistooling/scripts.py @@ -27,6 +27,7 @@ def run_script(script, *args, **kwargs): + print(script, *map(shlex.quote, args)) return subprocess.check_call( [os.path.join(SCRIPTS, script), *args], **kwargs )