Codebase list rust-stfu8 / 7f0220a
Add list-unrelease.sh as a helper script Ximin Luo 5 years ago
1 changed file(s) with 8 addition(s) and 0 deletion(s). Raw diff Collapse all Expand all
0 #!/bin/sh
1 set -e
2 git fetch origin --prune
3 git grep -l UNRELEASED-FIXME-AUTOGENERATED-DEBCARGO -- src/*/debian/changelog | cut -d/ -f2 | while read pkg; do
4 if ! git show-ref --quiet --verify "refs/remotes/origin/pending-$pkg"; then
5 head -n1 src/$pkg/debian/changelog
6 fi
7 done