blob: f92e5ab49ad8233f1dc9bb7cfe074887cae73d16 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
post_upgrade() {
if [ $(vercmp $2 132.r129.g5f9804fb6-1) -lt 0 ]; then cat << EOF
********************************************************************************
* Wanting to be as close as possible to Ares vanilla, the location *
* of settings files has been changed from *
* $XDG_CONFIG_HOME (likely ~/.config/ares/settings.bml) to the default *
* $XDG_DATA_HOME (likely ~/.local/share/ares/settings.bml). *
* Ares will attempt to copy this file to the new location but success is not *
* guaranteed, so please check whether the settings are successfully copied. *
* After which, the file in old location can be safely removed. *
********************************************************************************
EOF
fi
}
|