~dricottone/pkgbuilds

ref: 0fce41eeda07a9f6f657f31e83e94b1a4af8a260 pkgbuilds/scripts/sign.sh -rwxr-xr-x 181 bytes
0fce41eeDominic Ricottone Added r-purrr 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