~dricottone/pkgbuilds

ref: b305d10288f610216558f8dd2d94b3558d2302a7 pkgbuilds/scripts/sign.sh -rwxr-xr-x 209 bytes
b305d102Dominic Ricottone Added r-htmltools 11 months 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