borg/scripts/sdist-sign

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
309 B
Plaintext
Raw Normal View History

#!/bin/bash
R=$1
if [ "$R" = "" ]; then
echo "Usage: sdist-sign 1.2.3"
exit
fi
if [ "$QUBES_GPG_DOMAIN" = "" ]; then
GPG=gpg
else
GPG=qubes-gpg-client-wrapper
fi
python -m build
D=dist/borgbackup-$R.tar.gz
$GPG --detach-sign --local-user "Thomas Waldmann" --armor --output "$D.asc" "$D"