debian/cubicweb-documentation.prerm
author Aurelien Campeas <aurelien.campeas@logilab.fr>
Thu, 14 Nov 2013 17:17:02 +0100
changeset 9361 0542a85fe667
parent 0 b97547f5f1fa
permissions -rw-r--r--
symmetric relations: replace bogus rql2sql translation by a hook The hook ensures X r Y => Y r X iff r is symmetric. The rql-no-hook data importer receives a small amendment but note that: * there exist no test for it * its actual semantics are undefined Hence we cannot prove this hunk breaks nothing, because we cannot prove anything. Closes #3259713.

#! /bin/sh -e
#

if [ "$1" = remove -o "$1" = upgrade ]; then
  if which install-docs >/dev/null 2>&1; then
    install-docs -r cubicweb-doc
  fi
fi

#DEBHELPER#

exit 0