mirror of
https://github.com/borgbackup/borg.git
synced 2024-12-23 16:26:29 +00:00
9 lines
139 B
Bash
Executable file
9 lines
139 B
Bash
Executable file
#!/bin/bash
|
|
# usage: sign-binaries 201512312359
|
|
|
|
for file in dist/borg-*; do
|
|
gpg --armor --detach-sign $file
|
|
done
|
|
|
|
touch -t $1 dist/*
|
|
|