mirror of
https://github.com/borgbackup/borg.git
synced 2024-12-23 16:26:29 +00:00
21 lines
311 B
Text
21 lines
311 B
Text
|
#!/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 setup.py sdist
|
||
|
|
||
|
D=dist/borgbackup-$R.tar.gz
|
||
|
|
||
|
$GPG --detach-sign --local-user "Thomas Waldmann" --armor --output $D.asc $D
|