Skip to content

Commit b845bda

Browse files
committed
Changes on the decode base64 cmd
1 parent 1a9cf17 commit b845bda

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: docs/utils.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ function add_ssh_keys() {
55
mkdir -p ~/.ssh
66
chmod 700 ~/.ssh
77
echo -n "${key_string}" >~/.ssh/id_rsa_base64
8-
base64 --decode --ignore-garbage ~/.ssh/id_rsa_base64 >~/.ssh/id_rsa
8+
base64 -w 0 ~/.ssh/id_rsa_base64 | base64 -di >~/.ssh/id_rsa
99
chmod 600 ~/.ssh/id_rsa
1010
}
1111

0 commit comments

Comments
 (0)