diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2018-02-06 15:16:23 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2018-02-06 15:16:23 +0200 |
commit | dba4c3ef42fb89aac2216c4f25af00dcecba3a38 (patch) | |
tree | 819355fd7159f534a48e8f99bbc28f71edea1d8f /server/mrrepo | |
parent | dfa7053b56391efe3457e5a1f9eb003d2ba0888e (diff) |
Fix incorrect old repository array parsing in mrrepo
Diffstat (limited to 'server/mrrepo')
-rwxr-xr-x | server/mrrepo | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/mrrepo b/server/mrrepo index 85a037c..e22e5dd 100755 --- a/server/mrrepo +++ b/server/mrrepo @@ -96,7 +96,7 @@ done <manifest # Find all the existing repositories (directories that end with .git). # -old=("$(find . -type d -name '*.git' -print -prune | sed -e 's%^./%%' -)") +old=($(find . -type d -name '*.git' -print -prune | sed -e 's%^./%%' -)) git_ops=() if [ "$verb" -eq 0 ]; then |