diff options
Diffstat (limited to 'debian/gstreamer-plugin-template.postinst')
-rw-r--r-- | debian/gstreamer-plugin-template.postinst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/debian/gstreamer-plugin-template.postinst b/debian/gstreamer-plugin-template.postinst index e2168e83..7d55d5a2 100644 --- a/debian/gstreamer-plugin-template.postinst +++ b/debian/gstreamer-plugin-template.postinst @@ -3,8 +3,8 @@ set -e if [ "$1" = "configure" ]; then - gst-register --gst-mask=0 || true - gst-compprep --gst-mask=0 || true + gst-register --gst-mask=0 > /dev/null || true + gst-compprep --gst-mask=0 > /dev/null || true fi #DEBHELPER# |