summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorDaniel Silverstone <dsilvers@digital-scurf.org>2012-11-10 16:34:40 +0000
committerDaniel Silverstone <dsilvers@digital-scurf.org>2012-11-10 16:34:40 +0000
commitf0f1642e67160452ce2a628652b60c78a58ed144 (patch)
tree4ba82bbf0c1d45dd376dfd4dd82d3e035156ce55 /bin
parent23bc9af7ecfab299a962cc1a356cf072531ba54e (diff)
downloadgitano-f0f1642e67160452ce2a628652b60c78a58ed144.tar.gz
BIN: Update gitano-auth run-command error msg to be neater
Diffstat (limited to 'bin')
-rw-r--r--bin/gitano-auth.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/gitano-auth.in b/bin/gitano-auth.in
index 299826a..31e62be 100644
--- a/bin/gitano-auth.in
+++ b/bin/gitano-auth.in
@@ -157,8 +157,8 @@ local env = {
local how, why = cmd.run(config, repo, parsed_cmdline, env)
if how ~= "exit" or why ~= 0 then
- gitano.log.critical("Error running sub-process:")
- gitano.log.critical(("%s (%d)\n"):format(how, why))
+ gitano.log.critical("Error running sub-process:",
+ ("%s (%d)"):format(how, why))
gitano.log.fatal("Unable to continue")
end