Fix ASCII banner syntax error in netbird-install.sh

Use heredoc instead of echo statements to avoid backslash escaping
issues that caused bash parsing errors.
This commit is contained in:
Claude 2025-12-18 08:50:30 +00:00
parent cadb58e7b3
commit 00a837b623
No known key found for this signature in database

View File

@ -13,14 +13,15 @@ setting_up_container
network_check network_check
update_os update_os
echo "" cat <<'EOF'
echo ' _ _ _____ _____ ____ _ _ _____ ____ '
echo '| \ | ||_ _| ____| _ \| | | | ____| _ \' _ _ _ ____ _ _
echo '| \| | _ | | | _| |_| |_ _ __ __ _| | | \' | \ | | ___| |_| __ )(_)_ __ __| |
echo '| . ` |/ _ \ | | |_ | __ <| | \'__/ _` | | | \' | \| |/ _ \ __| _ \| | '__/ _` |
echo '| |\ | __/ |_| |__| |_) | | | | (__ | |_| |' | |\ | __/ |_| |_) | | | | (_| |
echo '|_| \_|\___|\___|\__|____/|_|_| \___|\_____/' |_| \_|\___|\__|____/|_|_| \__,_|
echo ""
EOF
msg_info "Installing Dependencies" msg_info "Installing Dependencies"
$STD apt install -y \ $STD apt install -y \