mirror of
https://gitdl.cn/https://github.com/chakralinux/gtk.git
synced 2025-01-25 10:32:12 +08:00
16 lines
663 B
Plaintext
16 lines
663 B
Plaintext
## arg 1: the new package version
|
|
## arg 2: the old package version
|
|
post_upgrade() {
|
|
if [ "`vercmp $2 1.0pre1-2`" -lt 0 ]; then
|
|
echo "===================================================="
|
|
echo "|!! !!!|"
|
|
echo "|!! Due to important changes to the locales, !!!|"
|
|
echo "|!! you must delete your BlueGriffon's user !!!|"
|
|
echo "|!! profile before launching this new build : !!!|"
|
|
echo "|!! rm -R ~/.disruptive\ innovations\ sarl/ !!!|"
|
|
echo "|!! !!!|"
|
|
echo "===================================================="
|
|
echo ""
|
|
fi
|
|
}
|