diff options
Diffstat (limited to 'mesonbuild/scripts/commandrunner.py')
-rw-r--r-- | mesonbuild/scripts/commandrunner.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/scripts/commandrunner.py b/mesonbuild/scripts/commandrunner.py index 695301b..30a7da2 100644 --- a/mesonbuild/scripts/commandrunner.py +++ b/mesonbuild/scripts/commandrunner.py @@ -35,7 +35,7 @@ def run_command(source_dir, build_dir, subdir, command, arguments): fullpath = os.path.join(source_dir, subdir, command) command_array = [fullpath] + arguments try: - return subprocess.Popen(command_array,env=child_env, cwd=cwd) + return subprocess.Popen(command_array, env=child_env, cwd=cwd) except FileNotFoundError: print('Could not execute command "%s".' % command) sys.exit(1) |