#!/bin/sh
set -e

case "$1" in
    purge)

        rm -rf /usr/share/spark-update-tool
        ;;
esac

exit 0