~dricottone/pkgbuilds

ref: c5ee8740afc831d5a305e8e0a2f304920a852ea7 pkgbuilds/scripts/sign.sh -rwxr-xr-x 181 bytes
c5ee8740Dominic Ricottone Added r-ellipsis 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