~dricottone/pkgbuilds

ref: 7cf9074a9b3ba9e3aa6fead1b142eda5c689056d pkgbuilds/scripts/sign.sh -rwxr-xr-x 209 bytes
7cf9074aDominic Ricottone Added r-rcolorbrewer 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