aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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"
}