From 8cf9f4b61b881a45a9adf60089e44c8c7238c693 Mon Sep 17 00:00:00 2001 From: Slava-Shchipunov Date: Fri, 1 Nov 2024 21:22:40 +0700 Subject: [PATCH] fix: add lost quotation mark --- install.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/install.sh b/install.sh index 73e6cad..619e622 100755 --- a/install.sh +++ b/install.sh @@ -49,7 +49,7 @@ while true; do read IS_SHOULD_CONFIGURE_WG_INTERFACE if [ "$IS_SHOULD_CONFIGURE_WG_INTERFACE" = "y" ] || [ "$IS_SHOULD_CONFIGURE_WG_INTERFACE" = "Y" ]; then - sh <(wget -O - "$BASE_RAW_URL/utils/wg-awg-setup.sh) Wireguard + sh <(wget -O - "$BASE_RAW_URL/utils/wg-awg-setup.sh") Wireguard else printf "\e[1;32mUse these instructions to manual configure https://itdog.info/nastrojka-klienta-wireguard-na-openwrt/\e[0m\n" fi @@ -58,14 +58,14 @@ while true; do ;; 3) - sh <(wget -O - "$BASE_RAW_URL/utils/amneziawg-install.sh) + sh <(wget -O - "$BASE_RAW_URL/utils/amneziawg-install.sh") printf "\033[32;1mThere are no instructions for manual configure yet. Do you want to configure the amneziawg interface? (y/n): \033[0m\n" read IS_SHOULD_CONFIGURE_WG_INTERFACE if [ "$IS_SHOULD_CONFIGURE_WG_INTERFACE" = "y" ] || [ "$IS_SHOULD_CONFIGURE_WG_INTERFACE" = "Y" ]; then - sh <(wget -O - "$BASE_RAW_URL/utils/wg-awg-setup.sh) AmneziaWG + sh <(wget -O - "$BASE_RAW_URL/utils/wg-awg-setup.sh") AmneziaWG fi break