aboutsummaryrefslogtreecommitdiff
path: root/wiki
diff options
context:
space:
mode:
Diffstat (limited to 'wiki')
-rwxr-xr-xwiki6
1 files changed, 3 insertions, 3 deletions
diff --git a/wiki b/wiki
index 26f91ef..9ce12f7 100755
--- a/wiki
+++ b/wiki
@@ -15,9 +15,9 @@ wiki_list=""
#
function commit {
if [ $# -lt 2 ]; then
- msg="$(date --rfc-email)"
+ msg="$(date)"
else
- msg="$@"
+ msg="$*"
fi
git add -A
git commit -m "$msg"
@@ -30,7 +30,7 @@ function ammend {
if [ $# -eq 1 ]; then
git commit --amend
else
- msg="$@"
+ msg="$*"
git commit --amend -m "$msg"
fi
}