Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions utils/swift_build_support/swift_build_support/shell.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ def call(command, stderr=None, env=None, dry_run=None, echo=True):
subprocess.check_call(command, env=_env, stderr=stderr)
except subprocess.CalledProcessError as e:
_fatal_error(
"command terminated with a non-zero exit status " +
"command `{0}` terminated with a non-zero exit status ".format(command) +
str(e.returncode) + ", aborting")
except OSError as e:
_fatal_error(
Expand Down Expand Up @@ -138,7 +138,7 @@ def capture(command, stderr=None, env=None, dry_run=None, echo=True,
if optional:
return None
_fatal_error(
"command terminated with a non-zero exit status " +
"command `{0}` terminated with a non-zero exit status ".format(command) +
str(e.returncode) + ", aborting")
except OSError as e:
if optional:
Expand Down