Skip to content

Commit 66453d9

Browse files
committed
Use grep -E flag instead of -P flag so it works on all platforms
1 parent 319a924 commit 66453d9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libevm/tooling/release/cherrypick.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ set -o pipefail;
2727

2828
SELF_DIR=$(dirname "${0}")
2929
# The format of the `cherrypicks` file is guaranteed by a test so we can use simple parsing here.
30-
CHERRY_PICKS=$(< "${SELF_DIR}/cherrypicks" grep -Pv "^#" | awk '{print $1}')
30+
CHERRY_PICKS=$(< "${SELF_DIR}/cherrypicks" grep -Ev "^#" | awk '{print $1}')
3131

3232
commits=()
3333
for commit in ${CHERRY_PICKS}; do

0 commit comments

Comments
 (0)