#!/bin/bash # # This script is licensed whith GPL-3 or Higher. # # Author: Angel Berlanas Vicente LIB_FILE="/usr/share/lliurex-non-essential-tools/common.sh" [ -e "$LIB_FILE" ] || exit 1 source $LIB_FILE # Some Test _sanity_checks COMPAT_TO_SET="$(apt-cache madison debhelper | cut -d '|' -f2 | sort -u | cut -d '.' -f1 | sed -e 's%[[:blank:]]%%g')" echo "$COMPAT_TO_SET" > debian/compat echo "COMPATIBILITE MODE SET TO : $COMPAT_TO_SET" exit 0