mirror of
https://github.com/GitJournal/GitJournal.git
synced 2025-07-15 07:56:11 +08:00
10 lines
148 B
Bash
Executable File
10 lines
148 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -eu pipefail
|
|
|
|
echo "$GITCRYPT_KEY" | base64 -d > ./secret
|
|
sha1sum ./secret
|
|
|
|
echo 'Unlocking ...'
|
|
git-crypt unlock ./secret
|