Skip to content

Commit 8bbbccc

Browse files
install.sh: add info when user.js symlinking fails, close #99
1 parent 16765d1 commit 8bbbccc

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

scripts/install.sh

100644100755
Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,10 @@ if [ "$GNOMISHEXTRAS" = true ] ; then
6161
fi
6262

6363
# Symlink user.js to firefox-gnome-theme one.
64+
6465
echo "Set configuration user.js file"
65-
ln -s chrome/firefox-gnome-theme/configuration/user.js ../user.js
66+
if ! ln -s chrome/firefox-gnome-theme/configuration/user.js ../user.js ; then
67+
echo "Please, manually copy theme's user.js contents to yours."
68+
fi
6669

6770
echo "Done."

0 commit comments

Comments
 (0)