diff --git a/.opencode-sandbox/entrypoint.sh b/.opencode-sandbox/entrypoint.sh index 6a52be7..e848258 100644 --- a/.opencode-sandbox/entrypoint.sh +++ b/.opencode-sandbox/entrypoint.sh @@ -9,10 +9,10 @@ cp /root/.ssh/known_hosts /tmp/known_hosts 2>/dev/null || touch /tmp/known_hosts chmod 600 /tmp/known_hosts # Add Gitea to known_hosts -ssh-keyscan -H git.processhub.work >> /tmp/known_hosts 2>/dev/null || true +ssh-keyscan -H -p 222 git.processhub.work >> /tmp/known_hosts 2>/dev/null || true # Configure SSH -export GIT_SSH_COMMAND="ssh -i /root/.ssh/id_ed25519 -o UserKnownHostsFile=/tmp/known_hosts -o StrictHostKeyChecking=accept-new" +export GIT_SSH_COMMAND="ssh -p 222 -i /root/.ssh/id_ed25519 -o UserKnownHostsFile=/tmp/known_hosts -o StrictHostKeyChecking=accept-new" # Git config git config --global user.email "gabriel.pereira@protonmail.com"