From: Silvio Rhatto Date: Thu, 24 Jan 2013 15:47:32 +0000 (-0200) Subject: Fix X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=55187fac6e506b3444d70ea32e07790f7e6e3156;p=scripts.git Fix --- diff --git a/commit b/commit index 0bd5613..9fc654e 100755 --- a/commit +++ b/commit @@ -120,7 +120,7 @@ function git_user { # Commit changes function git_commit { # Remove '--config' from args, otherwise it goes to the commit log - params="echo $* | sed -e 's/--commit//'" + params="`echo $* | sed -e 's/--commit//'`" git commit -a -m "$params" }