~dricottone/pkgbuilds

ref: 38909dc3c45091c05aee8c5dec346d53c9b9f328 pkgbuilds/scripts/sign.sh -rwxr-xr-x 181 bytes
38909dc3Dominic Ricottone Added r-isoband 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