git-remote-object-store 0.2.4

Git remote helper backed by cloud object stores (S3, Azure Blob Storage)
Documentation
#!/bin/sh
# prerm script for git-remote-object-store. Tears down the `+`-form
# symlinks created by postinst before the package is removed, so the
# install set is fully reversible.
#
# Source of truth for the `+`-form names is the `HELPER_PAIRS` const
# in `xtask/src/install.rs`. The `packaging_sync` unit tests there
# fail if a `+`-form name from `HELPER_PAIRS` is missing here.

set -eu

case "$1" in
    remove|upgrade|deconfigure)
        rm -f /usr/bin/git-remote-s3+https
        rm -f /usr/bin/git-remote-s3+http
        rm -f /usr/bin/git-remote-az+https
        rm -f /usr/bin/git-remote-az+http
        ;;
    failed-upgrade)
        ;;
    *)
        echo "prerm called with unknown argument \`$1'" >&2
        exit 1
        ;;
esac

#DEBHELPER#

exit 0