#!/bin/sh

set -u
set -e

if pkginfo osstech-sbuild >/dev/null 2>&1; then
  echo "ERROR: This package conflicts with obsolete osstech-sbuild package." 1>&2
  echo "ERROR: Remove osstech-sbuild package before." 1>&2
  exit 1
fi

exit 0

