mirror of
https://github.com/Burnett01/rsync-deployments.git
synced 2025-12-07 00:22:20 +01:00
fix: regression - using echo instead of printf again #90
It was found via #90 and #89 that using printf causes problems. In the previous version 7.1.0 we used echo instead of printf - hence we are bringing this back for version 8.0.x
This commit is contained in:
parent
8a39558686
commit
2c22263f9c
1 changed files with 1 additions and 1 deletions
|
|
@ -17,7 +17,7 @@ source hosts-init
|
||||||
|
|
||||||
# Start the SSH agent and load key.
|
# Start the SSH agent and load key.
|
||||||
source agent-start "$GITHUB_ACTION"
|
source agent-start "$GITHUB_ACTION"
|
||||||
printf '%s' "$INPUT_REMOTE_KEY" | SSH_PASS="${INPUT_REMOTE_KEY_PASS}" agent-add >/dev/null 2>&1
|
echo "$INPUT_REMOTE_KEY" | SSH_PASS="$INPUT_REMOTE_KEY_PASS" agent-add
|
||||||
|
|
||||||
# Variables.
|
# Variables.
|
||||||
LEGACY_RSA_HOSTKEYS=""
|
LEGACY_RSA_HOSTKEYS=""
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue