@@ -146,7 +146,7 @@ check_describe A-* HEAD
146
146
test_expect_success ' describe works from outside repo using --git-dir' '
147
147
git clone --bare "$TRASH_DIRECTORY" "$TRASH_DIRECTORY/bare" &&
148
148
git --git-dir "$TRASH_DIRECTORY/bare" describe >out &&
149
- grep "^A-[1-9][0-9]\ ?-g[0-9a-f]\ +$" out
149
+ grep -E "^A-[1-9][0-9]?-g[0-9a-f]+$" out
150
150
'
151
151
152
152
check_describe " A-*[0-9a-f]" --dirty
@@ -156,7 +156,7 @@ test_expect_success 'describe --dirty with --work-tree' '
156
156
cd "$TEST_DIRECTORY" &&
157
157
git --git-dir "$TRASH_DIRECTORY/.git" --work-tree "$TRASH_DIRECTORY" describe --dirty >"$TRASH_DIRECTORY/out"
158
158
) &&
159
- grep "^A-[1-9][0-9]\ ?-g[0-9a-f]\ +$" out
159
+ grep -E "^A-[1-9][0-9]?-g[0-9a-f]+$" out
160
160
'
161
161
162
162
test_expect_success ' set-up dirty work tree' '
@@ -170,7 +170,7 @@ test_expect_success 'describe --dirty with --work-tree (dirty)' '
170
170
cd "$TEST_DIRECTORY" &&
171
171
git --git-dir "$TRASH_DIRECTORY/.git" --work-tree "$TRASH_DIRECTORY" describe --dirty >"$TRASH_DIRECTORY/out"
172
172
) &&
173
- grep "^A-[1-9][0-9]\ ?-g[0-9a-f]\ +-dirty$" out
173
+ grep -E "^A-[1-9][0-9]?-g[0-9a-f]+-dirty$" out
174
174
'
175
175
176
176
check_describe " A-*[0-9a-f].mod" --dirty=.mod
@@ -180,7 +180,7 @@ test_expect_success 'describe --dirty=.mod with --work-tree (dirty)' '
180
180
cd "$TEST_DIRECTORY" &&
181
181
git --git-dir "$TRASH_DIRECTORY/.git" --work-tree "$TRASH_DIRECTORY" describe --dirty=.mod >"$TRASH_DIRECTORY/out"
182
182
) &&
183
- grep "^A-[1-9][0-9]\ ?-g[0-9a-f]\ +.mod$" out
183
+ grep -E "^A-[1-9][0-9]?-g[0-9a-f]+.mod$" out
184
184
'
185
185
186
186
test_expect_success ' describe --dirty HEAD' '
0 commit comments