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 5656c58 commit 82b1f05Copy full SHA for 82b1f05
git-iterate
@@ -72,17 +72,17 @@ fi
72
first="true"
73
for folder in $folders
74
do
75
- folders=$(search_git_folders "$folder")
+ folders=`search_git_folders "$folder"`
76
for git_folder in $folders
77
78
cd "$git_folder"
79
if [ "$quiet" = "true" ]
80
then
81
if [ "$foreach" = "false" ]
82
83
- errors=$(git $@ 2>&1)
+ errors=`git $@ 2>&1`
84
else
85
- errors=$($@ 2>&1)
+ errors=`$@ 2>&1`
86
fi
87
if [ "$?" != 0 ]
88
@@ -91,7 +91,7 @@ do
91
echo >&2
92
93
first="false"
94
- echo $git_folder >&2
+ echo "\033[1m$git_folder\033[0m" >&2
95
echo "$errors" >&2
96
echo "Error $? in $git_folder" >&2
97
0 commit comments