Skip to content

Commit 769ddc3

Browse files
committed
Fix regex to catch epochs > 9 properly
1 parent bd83b57 commit 769ddc3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

scripts/check-for-epoch-bump.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ epoch_grep() {
1515
}
1616

1717
epoch_sed() {
18-
sed -r 's/^[[:space:]]+epoch:[[:space:]]+([0-9])+.*$/\1/'
18+
sed -r 's/^[[:space:]]+epoch:[[:space:]]+([0-9]+).*$/\1/'
1919
}
2020

2121
for yaml_file in "$@"; do

0 commit comments

Comments
 (0)