mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2026-01-20 11:51:22 +00:00
7 lines
118 B
Bash
Executable File
7 lines
118 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
mkdir -p ~/.ssh
|
|
echo $SSH_PRIVATE_KEY | base64 -d > ~/.ssh/id_rsa
|
|
chmod 600 ~/.ssh/id_rsa
|