From: Joey Hess Date: Wed, 13 Feb 2013 18:47:06 +0000 (-0400) Subject: fix apparent typo in veracity commands X-Git-Url: https://git.madduck.net/code/myrepos.git/commitdiff_plain/ecb63e331751a13a3843811997c55c70e6775f62 fix apparent typo in veracity commands @ should be $@ for parameters --- diff --git a/mr b/mr index 3ce3c5e..7f147cc 100755 --- a/mr +++ b/mr @@ -1943,7 +1943,7 @@ hg_commit = hg commit "$@" && hg push darcs_commit = darcs record -a "$@" && darcs push -a fossil_commit = fossil commit "$@" vcsh_commit = vcsh run "$MR_REPO" git commit -a "$@" && vcsh run "$MR_REPO" git push --all -veracity_commit = vv commit "@" && vv push +veracity_commit = vv commit "$@" && vv push git_record = git commit -a "$@" bzr_record = @@ -1956,7 +1956,7 @@ hg_record = hg commit "$@" darcs_record = darcs record -a "$@" fossil_record = fossil commit "$@" vcsh_record = vcsh run "$MR_REPO" git commit -a "$@" -veracity_record = vv commit "@" +veracity_record = vv commit "$@" svn_push = : git_push = git push "$@"