~dricottone/pkgbuilds

ref: 9a07a6143e8af367c1d133e0b178771ba9cc2729 pkgbuilds/scripts/sign.sh -rwxr-xr-x 209 bytes
9a07a614Dominic Ricottone Fixed r-reprex 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