aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2013-01-24 13:47:32 -0200
committerSilvio Rhatto <rhatto@riseup.net>2013-01-24 13:47:32 -0200
commit55187fac6e506b3444d70ea32e07790f7e6e3156 (patch)
treebf9eea60c0316ea9d73ec480b620122100a67be8
parent4552017e07e60b11e0cb3e36d43e76524b48851f (diff)
downloadscripts-55187fac6e506b3444d70ea32e07790f7e6e3156.tar.gz
scripts-55187fac6e506b3444d70ea32e07790f7e6e3156.tar.bz2
Fix
-rwxr-xr-xcommit2
1 files changed, 1 insertions, 1 deletions
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"
}