7 lines
223 B
Bash
7 lines
223 B
Bash
#!/bin/sh -e
|
|
|
|
if [ ${DEB_PKG_NAME} = icecat-esr ]; then
|
|
if [ "$$1" = "upgrade" ] || [ "$$1" = "install" ] ; then
|
|
dpkg-divert --package icecat-esr --divert /usr/bin/icecat.real --rename /usr/bin/icecat
|
|
fi
|
|
fi
|