mirror of
https://github.com/GAM-team/GAM.git
synced 2025-05-12 04:07:21 +00:00
9 lines
162 B
Bash
Executable File
9 lines
162 B
Bash
Executable File
#!/bin/sh
|
|
credspath="$1"
|
|
if [ ! -d "$credspath" ]; then
|
|
echo "creating ${credspath}"
|
|
mkdir -p "$credspath"
|
|
fi
|
|
|
|
echo -e "$oa2" > "${credspath}/oauth2.txt"
|