blob: 7e27b17ee2b3041652327bf8e43277bdaaa3f70f (
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 extracted 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
}
|