7 lines
130 B
Bash
7 lines
130 B
Bash
#!/bin/sh -e
|
|
|
|
if [ "$1" = upgrade ] && dpkg --compare-versions "$2" lt 0.13+ds1; then
|
|
pycentral pkgremove remove terminator
|
|
fi
|
|
|