#!/bin/sh

# Remove database if app was removed
if [ "$1" == "purge" ] || [ "$1" == "remove" ]; then
  rm -f /home/user/.jenirok.db
fi

exit 0
