mirror of
https://github.com/borgbackup/borg.git
synced 2024-11-04 00:05:45 +03:00
21 lines
332 B
Bash
Executable File
21 lines
332 B
Bash
Executable File
#!/bin/bash
|
|
|
|
D=$1
|
|
|
|
if [ "$D" = "" ]; then
|
|
echo "Usage: sign-binaries 201912312359"
|
|
exit
|
|
fi
|
|
|
|
if [ "$QUBES_GPG_DOMAIN" = "" ]; then
|
|
GPG=gpg
|
|
else
|
|
GPG=qubes-gpg-client-wrapper
|
|
fi
|
|
|
|
for file in dist/borg-*; do
|
|
$GPG --local-user "Thomas Waldmann" --armor --detach-sign --output $file.asc $file
|
|
done
|
|
|
|
touch -t $D dist/*
|