diff --git a/entrypoint.sh b/entrypoint.sh index 1f3090f..0c94207 100644 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -1,3 +1,5 @@ +#!/bin/sh -l +env mkdir -p ~/.ssh/ # Print the SSH key, replacing newline characters with actual new lines @@ -10,6 +12,6 @@ chmod 600 ~/.ssh/id_rsa ssh-keyscan -H $INPUT_REMOTE_HOST >> ~/.ssh/known_hosts # SCP files to the remote host -rsync ${INPUT_RSYNC_PARAMETERS} public/ ${INPUT_REMOTE_USER}@${INPUT_REMOTE_HOST}:${INPUT_REMOTE_PATH} +#rsync ${INPUT_RSYNC_PARAMETERS} public/ ${INPUT_REMOTE_USER}@${INPUT_REMOTE_HOST}:${INPUT_REMOTE_PATH} exit 0