gstreamer/debian/gstreamer-plugin-template.postinst
David I. Lehn 0e1c75f73f scripts should not fail if -compprep or -register do
Original commit message from CVS:
scripts should not fail if -compprep or -register do
2001-09-12 06:06:47 +00:00

14 lines
162 B
Bash

#!/bin/sh
set -e
if [ "$1" = "configure" ]; then
gstreamer-register --gst-mask=0 || true
gstreamer-compprep --gst-mask=0 || true
fi
#DEBHELPER#
exit 0