8 lines
149 B
Bash
Executable File
8 lines
149 B
Bash
Executable File
#!/bin/bash
|
|
|
|
TAG=$1
|
|
GPGHOMEDIR=$2
|
|
|
|
git archive --format=tgz "$1" > cryfs-$1.tar.gz
|
|
gpg --homedir "$GPGHOMEDIR" --armor --detach-sign cryfs-$1.tar.gz
|