Files
extra/iceweasel-uxp/iceweasel-uxp.install
2025-06-22 20:39:04 -05:00

30 lines
1.7 KiB
Plaintext

post_install() {
echo '>>> !!!MANUAL UPGRADE REQUIRED FOR EXISTING PROFILES!!!'
echo '>>> ================================================================================='
echo '>>> The latest version of Iceweasel-UXP now uses its own profile directory.'
echo '>>> In order to use your existing browser profile, please rename "~/.mozilla/firefox"'
echo '>>> to "~/.hyperbola/iceweasel-uxp". e.g.:'
echo '>>> ---------------------------------------------------------------------------------'
echo '>>> mkdir -p ~/.hyperbola/iceweasel-uxp'
echo '>>> cp -a ~/.mozilla/firefox/* ~/.hyperbola/iceweasel-uxp'
echo '>>> ---------------------------------------------------------------------------------'
echo '>>> Once you have confirmed your profile is working in all installed application(s)'
echo '>>> you may remove the ~/.mozilla directory.'
}
post_upgrade() {
if (( $(vercmp $2 52.9.20190826-1) < 0 )); then
echo '>>> !!!MANUAL UPGRADE REQUIRED FOR EXISTING PROFILES!!!'
echo '>>> ================================================================================='
echo '>>> The latest version of Iceweasel-UXP now uses its own profile directory.'
echo '>>> In order to use your existing browser profile, please rename "~/.mozilla/firefox"'
echo '>>> to "~/.hyperbola/iceweasel-uxp". e.g.:'
echo '>>> ---------------------------------------------------------------------------------'
echo '>>> mkdir -p ~/.hyperbola/iceweasel-uxp'
echo '>>> cp -a ~/.mozilla/firefox/* ~/.hyperbola/iceweasel-uxp'
echo '>>> ---------------------------------------------------------------------------------'
echo '>>> Once you have confirmed your profile is working in all installed application(s)'
echo '>>> you may remove the ~/.mozilla directory.'
fi
}