Welcome to mirror list, hosted at ThFree Co, Russian Federation.

prerm « DEBIAN - github.com/mrDoctorWho/vk4xmpp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 53371572c19aeced70f6fcd2afa8dcbb100be957 (plain)
1
2
3
4
5
6
7
8
9
#!/bin/sh

case "$1" in
	remove|purge)
		# Remove all compiled python files from installation directories
		DIR="/usr/lib/vk4xmpp/"
		find "$DIR" -type f -name "*.py[cod]" -delete
		;;
esac