~dricottone/pkgbuilds

ref: 7715f1b0caadc38e752847319bea985005df6d6b pkgbuilds/scripts/sign.sh -rwxr-xr-x 209 bytes
7715f1b0Dominic Ricottone Added r-fs 1 year, 28 days ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh

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