blob: de8f78f0bef19957f81a2a496f9899207eb80190 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
post_install() {
echo
echo "==> videoduplicatefinder will be copy to ~/.local/share/videoduplicatefinder on the first run."
echo
}
post_upgrade() {
echo
echo "==> The copy of videoduplicatefinder in your home directory will be upgraded on the next run."
echo
}
post_remove() {
echo
echo "==> You will have to manually remove the videoduplicatefinder directory in your home directory:"
echo "==> rm -rf ~/.local/share/videoduplicatefinder"
echo
}
|