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 a02af74 commit 438df8cCopy full SHA for 438df8c
bin/git-find-dirty
@@ -11,7 +11,7 @@ fail() {
11
12
for gitprojpath in $(find . -type d -name .git | sort | sed "s/\/\.git//"); do
13
pushd . > /dev/null
14
- cd "$gitprojpath" || fail "could not $gitprojpath"
+ cd "$gitprojpath" || fail "could not cd to $gitprojpath"
15
isdirty=$(git status -s | grep "^.*")
16
if [ -n "$isdirty" ]; then
17
echo "DIRTY:" "$gitprojpath"
0 commit comments