~dricottone/pkgbuilds

ref: c1be5bd04fc7a8d38615aa526d882b4d0a479b72 pkgbuilds/scripts/sign.sh -rwxr-xr-x 181 bytes
c1be5bd0Dominic Ricottone Added r-dbi 1 year, 29 days 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