summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xdeploy.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/deploy.sh b/deploy.sh
index c437402..86cee5e 100755
--- a/deploy.sh
+++ b/deploy.sh
@@ -26,5 +26,6 @@ for profile in ${HOME}/.mozilla/firefox/*.default ${HOME}/.mozilla/firefox/*.def
[ ! -d "$profile" ] && continue
mkdir -p "$profile/chrome"
ln -sf ${CONFIG_DIR}/firefox/user.js "$profile/user.js"
- ln -sf ${CONFIG_DIR}/firefox/userChrome.css "$profile/chrome/userChrome.css"
+ # userChrome.css needs to be copied, as sandbox can't resolve symlink
+ cp ${CONFIG_DIR}/firefox/userChrome.css "$profile/chrome/userChrome.css"
done