We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 82cc37d commit 1a9b0c2Copy full SHA for 1a9b0c2
bin/git-bulk
@@ -146,7 +146,7 @@ function executBulkOp () {
146
local actual=$PWD
147
[ "${quiet?}" != "true" ] && echo 1>&2 "Executing bulk operation in workspace ${inverse}$actual${reset}"
148
149
- allGitFolders=( $(eval find -L . -name ".git") )
+ allGitFolders=( $(eval find -L . -name ".git" 2>/dev/null) )
150
151
for line in "${allGitFolders[@]}"; do
152
local gitrepodir=${line::${#line}-5} # cut the .git part of find results to have the root git directory of that repository
0 commit comments