Skip to content

Commit dcd18e7

Browse files
committed
extract.sh: Use "grep -F" where possible
Signed-off-by: Sebastian Pipping <[email protected]>
1 parent 39e7323 commit dcd18e7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/lcov/extract/extract.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ if [ 0 != $? ] ; then
217217
fi
218218
fi
219219
220-
grep -E "\"user\":\"$USER\"" context.info.json
220+
grep -F "\"user\":\"$USER\"" context.info.json
221221
if [ 0 != $? ] ; then
222222
echo "Error: did not find expected context field"
223223
if [ $KEEP_GOING == 0 ] ; then
@@ -241,7 +241,7 @@ if [ 0 != $? ] ; then
241241
fi
242242
fi
243243
244-
grep -E "\"user\":\"$USER\"" context.info.json
244+
grep -F "\"user\":\"$USER\"" context.info.json
245245
if [ 0 != $? ] ; then
246246
echo "Error: did not find expected context field"
247247
if [ $KEEP_GOING == 0 ] ; then

0 commit comments

Comments
 (0)