mirror of
https://github.com/GAM-team/GAM.git
synced 2026-06-19 13:41:36 +00:00
10 lines
287 B
Bash
10 lines
287 B
Bash
#!/bin/sh
|
|
|
|
mydir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
|
|
|
|
credsfile="${gampath}/creds.tar"
|
|
gpg --quiet --batch --yes --decrypt --passphrase="${PASSPHRASE}" \
|
|
--output "${credsfile}" "${mydir}/creds.tar.gpg"
|
|
|
|
tar xf "${credsfile}" --directory "${gampath}"
|