diff options
Diffstat (limited to 'run-command.c')
-rw-r--r-- | run-command.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/run-command.c b/run-command.c index 71f83368c4..f3e7abb7de 100644 --- a/run-command.c +++ b/run-command.c @@ -109,8 +109,8 @@ fail_pipe: } if (cmd->dir && chdir(cmd->dir)) - die("exec %s: cd to %s failed (%s)", cmd->argv[0], - cmd->dir, strerror(errno)); + die_errno("exec '%s': cd to '%s' failed", cmd->argv[0], + cmd->dir); if (cmd->env) { for (; *cmd->env; cmd->env++) { if (strchr(*cmd->env, '=')) |