Closed mokagio closed 2 years ago
Fixes #20. The trick was to call echo -e instead of echo.
echo -e
echo
Without the -e flag, the \n in the single-line string where the SSH key stored were printed literally in the SSH key file, making it an invalid key.
-e
\n
You can see this in action in 3927-gh-shiftyjelly/pocketcasts-ios.
Fixes #20. The trick was to call
echo -e
instead ofecho
.Without the
-e
flag, the\n
in the single-line string where the SSH key stored were printed literally in the SSH key file, making it an invalid key.You can see this in action in 3927-gh-shiftyjelly/pocketcasts-ios.