10 lines
223 B
Bash
Executable File
10 lines
223 B
Bash
Executable File
#!/bin/bash
|
|
pushd /srv/http/built-packages >/dev/null
|
|
find -name "*.pkg.tar.xz" | while read _p; do
|
|
if [ ! -f "${_p}.sig" ]; then
|
|
echo "Signing ${_p}"
|
|
gpg --output ${_p}.sig --detach-sig ${_p}
|
|
fi
|
|
done
|
|
popd >/dev/null
|