summaryrefslogtreecommitdiff
path: root/deploy.sh
diff options
context:
space:
mode:
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 8f5691f..c437402 100755
--- a/deploy.sh
+++ b/deploy.sh
@@ -22,7 +22,8 @@ ln -sf ${CONFIG_DIR}/muttrc ${HOME}/.mutt/muttrc
ln -sf ${CONFIG_DIR}/ripgreprc ${HOME}/.config/ripgreprc
-for profile in ${HOME}/.mozilla/firefox/*.default; do
+for profile in ${HOME}/.mozilla/firefox/*.default ${HOME}/.mozilla/firefox/*.default-release; do
+ [ ! -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"