Codebase list rust-libslirp / 4b6bb6a
If RFS has some content, show it + skip the pending branches Sylvestre Ledru 4 years ago
1 changed file(s) with 11 addition(s) and 1 deletion(s). Raw diff Collapse all Expand all
00 #!/bin/sh
11 for i in src/*/debian/RFS; do
2 basename $(dirname $(dirname $i))
2 pkg=$(basename $(dirname $(dirname $i)))
3 if test -n "$(git --no-pager branch --remotes -l origin/pending-$pkg)"; then
4 # If a pending branch exists, skip it
5 continue
6 fi
7 echo $pkg
8 # trim the content
9 content=$(cat $i|xargs echo -n)
10 if test -n "$content"; then
11 echo "=> $content"
12 fi
313 done