Skip to content

Commit 45faf2c

Browse files
committed
chore: nix.sh - oneliner to find tempfixes & blockers
Signed-off-by: Reputable2722 <153411261+Reputable2772@users.noreply.github.com>
1 parent 3d737d6 commit 45faf2c

1 file changed

Lines changed: 7 additions & 0 deletions

File tree

nix.sh

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,13 @@ first_time_setup() {
8686
echo "Setup completed."
8787
}
8888

89+
find_blockers() {
90+
find . \
91+
-path '*/.*' -prune -o \
92+
-type f \
93+
-exec grep -nHE '[A-Za-z0-9._-]+/[A-Za-z0-9._-]+#[0-9]+' {} + | sed -E 's|([A-Za-z0-9._-]+/[A-Za-z0-9._-]+)#([0-9]+)|https://github.com/\1/issues/\2|g'
94+
}
95+
8996
case $1 in
9097
"ci")
9198
ci;;

0 commit comments

Comments
 (0)