mirror of
https://github.com/r-freeman/portfolio.git
synced 2024-11-11 19:05:41 +00:00
6 lines
187 B
Bash
6 lines
187 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
# --batch to prevent interactive command
|
||
|
# --yes to assume "yes" for questions
|
||
|
gpg --quiet --batch --yes --decrypt --passphrase="$SECRET_PASSPHRASE" --output ./.env ./.env.gpg
|