From 5e0a5a18b622ff657a1034f3bf13e42dbba44921 Mon Sep 17 00:00:00 2001 From: fliegerjohn Date: Mon, 20 Nov 2023 12:59:20 +0100 Subject: [PATCH] Move chrome if there --- fenix-fox.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/fenix-fox.sh b/fenix-fox.sh index 72dbf85..accaab8 100755 --- a/fenix-fox.sh +++ b/fenix-fox.sh @@ -33,6 +33,9 @@ enable_profile_customizations() { deploy_fenix_fox() { echo "Copy files in place and enable fenix-fox" + if [ -d "${installdir}/chrome" ]; then + mv $installdir/chrome $installdir/chrome.original + fi cp -r src/userChrome $installdir/chrome cp src/userChrome/userChrome-fenix_fox.css $installdir/chrome/ }