blob: 68ad0588afe5f43c16f72b74f31cce0c72b50711 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
post_upgrade() {
if [ $(vercmp $2 133-5) -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/ares/
* to the default *
* $XDG_DATA_HOME/ares/
* Should you read this message, please move the file settings.bml to the new *
* location. Once done, only then ares can start with your customized settings. *
********************************************************************************
EOF
fi
}
|