From: W. Trevor King Date: Wed, 30 Nov 2011 17:34:20 +0000 (-0500) Subject: Options before repository name in command call inside run_on_all_repos. X-Git-Tag: v0.3~33 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=5e9c09ec0f95892204424a25a12529069fbe0ef6;p=dotfiles-framework.git Options before repository name in command call inside run_on_all_repos. --- diff --git a/dotfiles.sh b/dotfiles.sh index 4734bc3..2f814fa 100755 --- a/dotfiles.sh +++ b/dotfiles.sh @@ -82,7 +82,7 @@ function run_on_all_repos() if [ "${REPO}" = '*' ]; then break # no known repositories fi - "${COMMAND}" "${REPO}" "${@}" || return 1 + "${COMMAND}" "${@}" "${REPO}" || return 1 done return fi