forked from cloudron-apps/gitea-app
5 lines
197 B
Bash
Executable file
5 lines
197 B
Bash
Executable file
#!/bin/bash
|
|
|
|
readonly SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
|
|
ssh -o IdentitiesOnly=yes -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -i ${SCRIPT_DIR}/id_rsa "$@"
|