initial import (Boeing r1752, NRL r878)
This commit is contained in:
commit
f8f46d28be
394 changed files with 99738 additions and 0 deletions
12
packaging/deb/core.postrm
Normal file
12
packaging/deb/core.postrm
Normal file
|
@ -0,0 +1,12 @@
|
|||
#!/bin/sh
|
||||
|
||||
if [ "$1" = "remove" ]; then
|
||||
PYTHONS="python2.6 python2.7"
|
||||
for P in $PYTHONS
|
||||
do
|
||||
DIR="usr/lib/$P/dist-packages/core"
|
||||
if [ -d $DIR ]; then
|
||||
find $DIR -name '*.pyc' -exec rm -f '{}' ';' 2> /dev/null
|
||||
fi
|
||||
done
|
||||
fi
|
Loading…
Add table
Add a link
Reference in a new issue