summaryrefslogtreecommitdiff
path: root/deploy.sh
diff options
context:
space:
mode:
authorReiner Herrmann <reiner@reiner-h.de>2023-01-02 19:55:34 +0100
committerReiner Herrmann <reiner@reiner-h.de>2023-01-02 19:55:34 +0100
commit585d21d1838b9664d81e6dfb4c2225c429b86c9e (patch)
tree1c3540c7d7988abf079a636a5d1164a9593e09aa /deploy.sh
parente8f84a3beb6f5fcf328551ffc2d39fe4a06827f3 (diff)
deploy.sh: copy userChrome.css instead of symlinking
Diffstat (limited to 'deploy.sh')
-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