https://github.com/KarmaComputing/container-hosting/blob/f4202b32dabcfc0f6c93f194634dc2c4ae6696c2/src/containerhosting/auto-repo.sh#L24 Change: ``` SSH_PRIVATE_KEY_ENCRYPTED=`python3 encrypt.py $SSH_PRIVATE_KEY $REPO_PUBLIC_KEY` ``` to ``` SSH_PRIVATE_KEY_ENCRYPTED=`python3 encrypt.py "$SSH_PRIVATE_KEY" $REPO_PUBLIC_KEY` ``` Path of discovery: - https://www.google.com/search?q=python+multiline+args&oq=python+argv+multil - https://www.google.com/search?q=python+sys+argc+multiline+argument - https://stackoverflow.com/a/749069 :bulb: :sparkle: - :bulb: ah yes of course bash string expansion > sidenode: use `VAR=$(echo example)` not `VAR=`echo example`` [read this shellcheck](https://www.shellcheck.net/wiki/SC2006)
container-hosting/src/containerhosting/auto-repo.sh
Line 24 in f4202b3
Change:
to
Path of discovery: