fwupd/contrib/debian/fwupd-tests.postinst
2017-07-17 14:46:50 -05:00

11 lines
224 B
Bash

#!/bin/sh -e
#DEBHELPER#
#only enable on installation not upgrade
if [ "$1" = configure ] && [ -z "$2" ]; then
if [ -f /etc/fwupd.conf ]; then
sed "s,^EnableTestSuite=.*,EnableTestSuite=true," -i /etc/fwupd.conf
fi
fi