From 147071502b70d3d65089559b3ed36d5cc209a58a Mon Sep 17 00:00:00 2001 From: Svitozar Cherepii Date: Sun, 9 Aug 2020 05:24:51 +0300 Subject: [PATCH] Fix symlink made from wrong directory to wrong directory --- scripts/install.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/scripts/install.sh b/scripts/install.sh index a8e485d..81e23ca 100755 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -60,10 +60,12 @@ if [ "$GNOMISHEXTRAS" = true ] ; then sed -i '1s/^/@import "theme\/hide-single-tab.css";\n/' firefox-gnome-theme/customChrome.css fi +cd .. + # Symlink user.js to firefox-gnome-theme one. echo "Set configuration user.js file" -if ! ln -s chrome/firefox-gnome-theme/configuration/user.js ../user.js ; then +if ! ln -s chrome/firefox-gnome-theme/configuration/user.js user.js ; then echo "Please, manually copy theme's user.js contents to yours." fi