From 1208b24818388416e5376967b8e89a1b13d1bf31 Mon Sep 17 00:00:00 2001 From: Rafael Mardojai CM Date: Wed, 22 Nov 2023 10:05:19 -0500 Subject: [PATCH] scripts: install: Remove "Installing theme in ..." echo It is somehow repetitive, and also the redirection is wrong Fixes #681 --- scripts/install.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/scripts/install.sh b/scripts/install.sh index a75b4a6..4bc8cc0 100755 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -27,7 +27,6 @@ function saveProfile(){ local PROFILE_PATH="$1" cd "$FIREFOXFOLDER/$PROFILE_PATH" || { echo "FAIL, Firefox profile path was not found."; exit 1; } - echo "Installing theme in $PWD" >$(tty) # Create a chrome directory if it doesn't exist. mkdir -p chrome cd chrome || { echo "FAIL, couldn't create chrome dir in $PWD, please check if there's something else named 'chrome'."; exit 1; }