From 3ae7721d500977e0178963a173f18990ab989c93 Mon Sep 17 00:00:00 2001 From: Kevin Fenzi Date: Tue, 13 Oct 2015 17:59:29 +0000 Subject: [PATCH] Fix commit script to have arguments in the right places. --- roles/infinote/files/infinoted-git-commit | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/infinote/files/infinoted-git-commit b/roles/infinote/files/infinoted-git-commit index a018a54d88..478786249a 100755 --- a/roles/infinote/files/infinoted-git-commit +++ b/roles/infinote/files/infinoted-git-commit @@ -1,4 +1,4 @@ #!/bin/bash cd /srv/web/infinote git add . >/dev/null -git commit -a -m --author="infinote " "Automated Commit of $1" >/dev/null +git commit -a --author="infinote " -m "Automated Commit of $1" >/dev/null