Skip to content

Commit bce40fc

Browse files
committed
Update scripts to explicitly filter the filename column
1 parent 807285b commit bce40fc

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

tools/git/scripts/lib_pkgs_per_day

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ pkg_json="${root}/tools/git/scripts/pkg_json_added_deleted"
2424
}
2525
2626
# Skip non-library `package.json`:
27-
! /lib\/node_modules\/\@stdlib\// {
27+
$9 !~ /lib\/node_modules\/\@stdlib\// {
2828
next
2929
}
3030

tools/git/scripts/lib_pkgs_per_hour

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ pkg_json="${root}/tools/git/scripts/pkg_json_added_deleted"
2323
}
2424
2525
# Skip non-library `package.json`:
26-
! /lib\/node_modules\/\@stdlib\// {
26+
$9 !~ /lib\/node_modules\/\@stdlib\// {
2727
next
2828
}
2929

tools/git/scripts/lib_pkgs_per_month

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ pkg_json="${root}/tools/git/scripts/pkg_json_added_deleted"
2424
}
2525
2626
# Skip non-library `package.json`:
27-
! /lib\/node_modules\/\@stdlib\// {
27+
$9 !~ /lib\/node_modules\/\@stdlib\// {
2828
next
2929
}
3030

tools/git/scripts/lib_pkgs_per_weekday

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ BEGIN {
2020
}
2121
2222
# Skip non-library `package.json`:
23-
! /lib\/node_modules\/\@stdlib\// {
23+
$9 !~ /lib\/node_modules\/\@stdlib\// {
2424
next
2525
}
2626

0 commit comments

Comments
 (0)