Skip to content

Commit db77be4

Browse files
authored
Change grep option from -E to -P in CI workflow
1 parent 758d02c commit db77be4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
1919
# Verify that data was actually loaded by checking row count
2020
echo "Verifying demo data was loaded..."
21-
row_count=$(docker compose exec -T ducklake-init duckdb -c "SELECT COUNT(*) FROM the_ducklake.gene;" | tail -n 2 | head -n 1 | \grep -Eo '\d+')
21+
row_count=$(docker compose exec -T ducklake-init duckdb -c "SELECT COUNT(*) FROM the_ducklake.gene;" | tail -n 2 | head -n 1 | grep -Po '\d+')
2222
echo "Found $row_count rows in gene table"
2323
2424
# Ensure we have a reasonable number of rows (gene data should have thousands)

0 commit comments

Comments
 (0)