blob: 0786b443fef9e58bb22a338aa02f4d489f5219b6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# arg 1: the new package version
# arg 2: the old package version
post_upgrade() {
cat << EOF
Internal data cleanup (upstream): The internal Eclipse data is now located in
the mytourbook installation folder. The existing data is not removed from the
old location, it should be removed manually using:
rm -r ~/.mytourbook/org.eclipse.*
Do not delete any other data from this directory, as it contains the tour data
files.
EOF
}
|