fix: reverting printf in favor of echo

Like in commit 2c22263 we are using echo again instead of printf because some runners can't function properly with it.
This commit is contained in:
Steven 2025-12-07 12:36:01 +01:00 committed by GitHub
parent 1002e5f311
commit 501415e740
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -2,4 +2,4 @@
set -eu set -eu
printf '%s\n' "$@" >> $HOME/.ssh/known_hosts echo "$@" >> $HOME/.ssh/known_hosts