blob: 996ec2364eb434ac74684b48340e05d33b069243 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
post_install() {
post_remove
echo "The file was installed in:"
kpsewhich flashcards.cls
}
post_upgrade() {
post_install
}
post_remove() {
echo "Upgrading package database..."
mktexlsr
}
|