diff options
| author | Reiner Herrmann <reiner@reiner-h.de> | 2023-01-02 19:55:34 +0100 |
|---|---|---|
| committer | Reiner Herrmann <reiner@reiner-h.de> | 2023-01-02 19:55:34 +0100 |
| commit | 585d21d1838b9664d81e6dfb4c2225c429b86c9e (patch) | |
| tree | 1c3540c7d7988abf079a636a5d1164a9593e09aa /deploy.sh | |
| parent | e8f84a3beb6f5fcf328551ffc2d39fe4a06827f3 (diff) | |
deploy.sh: copy userChrome.css instead of symlinking
Diffstat (limited to 'deploy.sh')
| -rwxr-xr-x | deploy.sh | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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 |
