Skip to content

Commit 438df8c

Browse files
committed
Fix wording in failure message
1 parent a02af74 commit 438df8c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bin/git-find-dirty

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ fail() {
1111

1212
for gitprojpath in $(find . -type d -name .git | sort | sed "s/\/\.git//"); do
1313
pushd . > /dev/null
14-
cd "$gitprojpath" || fail "could not $gitprojpath"
14+
cd "$gitprojpath" || fail "could not cd to $gitprojpath"
1515
isdirty=$(git status -s | grep "^.*")
1616
if [ -n "$isdirty" ]; then
1717
echo "DIRTY:" "$gitprojpath"

0 commit comments

Comments
 (0)