File: libreoffice-lightproof-editor.prerm

package info (click to toggle)
lightproof 1.6-2
  • links: PTS
  • area: main
  • in suites: bullseye
  • size: 476 kB
  • sloc: python: 1,357; xml: 48; makefile: 31; sh: 16
file content (11 lines) | stat: -rw-r--r-- 183 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh

set -e

if [ "$1" = "remove" ]; then
	# remove .pycs
	find /usr/lib/libreoffice/share/extensions/lightproof_editor/pythonpath -name "*.pyc" -exec rm {} \;
fi

#DEBHELPER#