修复一个奇怪的 bug.

This commit is contained in:
LamGC 2023-01-28 15:45:40 +08:00
parent 732d37035e
commit 541c316935
Signed by: LamGC
GPG Key ID: 6C5AE2A913941E1D

View File

@ -77,7 +77,7 @@ update_sshkeys() {
echo "Please specify the URL of the SSH public key."
exit 1
fi
echo "Downloading SSH public key from `$sshkey_url`"
echo "Downloading SSH public key from '$sshkey_url'"
mkdir -p ~/.ssh
local ssh_keys=$(curl -s $sshkey_url)
if [ $? -ne 0 ] || [ "$ssh_keys" == "" ]; then