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
update_os
echo ""
echo ' _ _ _____ _____ ____ _ _ _____ ____ '
echo '| \ | ||_ _| ____| _ \| | | | ____| _ \'
echo '| \| | _ | | | _| |_| |_ _ __ __ _| | | \'
echo '| . ` |/ _ \ | | |_ | __ <| | \'__/ _` | | | \'
echo '| |\ | __/ |_| |__| |_) | | | | (__ | |_| |'
echo '|_| \_|\___|\___|\__|____/|_|_| \___|\_____/'
echo ""
cat <<'EOF'
_ _ _ ____ _ _
| \ | | ___| |_| __ )(_)_ __ __| |
| \| |/ _ \ __| _ \| | '__/ _` |
| |\ | __/ |_| |_) | | | | (_| |
|_| \_|\___|\__|____/|_|_| \__,_|
EOF
msg_info "Installing Dependencies"
$STD apt install -y \