diff options
author | Martin Fischer <martin@push-f.com> | 2025-04-04 13:42:58 +0200 |
---|---|---|
committer | Martin Fischer <martin@push-f.com> | 2025-04-05 12:10:36 +0200 |
commit | b6e94ce2128968d83b0714904b251de434b58ab2 (patch) | |
tree | 83ddea484512f2bbc1dbd26e0bb239592bb405ff /find-lib-feats.sh | |
parent | d980c8532918a1908b47d2a5571432520e425102 (diff) |
refactor: move shell logic into build.go
Diffstat (limited to 'find-lib-feats.sh')
-rwxr-xr-x | find-lib-feats.sh | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/find-lib-feats.sh b/find-lib-feats.sh new file mode 100755 index 0000000..5db0973 --- /dev/null +++ b/find-lib-feats.sh @@ -0,0 +1,5 @@ +set -o pipefail +git -C "$1" grep -hEo '(un)?stable\(feature =.+\)' library/ \ + | grep -v 'issue = "none"' \ + | grep -oP '(?<=feature = ")([^"]+)' \ + | sort -u |