~dricottone/pkgbuilds

ref: cac37ca1bcb49ef5ae113e8f1fd620ea4d7b91c1 pkgbuilds/scripts/sign.sh -rwxr-xr-x 181 bytes
cac37ca1Dominic Ricottone Added r-labeling 11 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
#!/bin/sh

for f in ~/pkg/local/pkgs/*.tar.zst; do
  if [ -e "$f.sig" ]; then
    echo ":: Skipping $f..."
  else
    gpg --use-agent --output "$f.sig" --detach-sig "$f"
  fi
done