From 5cb03f2e0ddacd93068524886df35a8c53c98544 Mon Sep 17 00:00:00 2001 From: tremor021 Date: Thu, 23 Oct 2025 11:46:52 +0200 Subject: [PATCH] Fixes --- ct/metube.sh | 2 +- install/metube-install.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ct/metube.sh b/ct/metube.sh index a1db5bb11..fcb522cf9 100644 --- a/ct/metube.sh +++ b/ct/metube.sh @@ -30,7 +30,7 @@ function update_script() { fi if [[ $(echo ":$PATH:" != *":/usr/local/bin:"*) ]]; then - echo 'export PATH="/usr/local/bin:$PATH"' >>~/.bashrc + echo -e "\nexport PATH=\"/usr/local/bin:\$PATH\"" >>~/.bashrc source ~/.bashrc if ! command -v deno &>/dev/null; then export DENO_INSTALL="/usr/local" diff --git a/install/metube-install.sh b/install/metube-install.sh index c4055d518..ce6fde8c3 100644 --- a/install/metube-install.sh +++ b/install/metube-install.sh @@ -33,7 +33,7 @@ msg_info "Installing Deno" export DENO_INSTALL="/usr/local" curl -fsSL https://deno.land/install.sh | $STD sh -s -- -y [[ ":$PATH:" != *":/usr/local/bin:"* ]] && - echo 'export PATH="/usr/local/bin:$PATH"' >>~/.bashrc && + echo -e "\nexport PATH=\"/usr/local/bin:\$PATH\"" >>~/.bashrc && source ~/.bashrc msg_ok "Installed Deno"