#!/bin/sh
# Uninstall script for non RPM/Debian installations; do not run if installation
#  is managed by RPM or Debian package manager

# Wing installation directory
DIRNAME=`dirname "$0"`
WINGHOME=`cd "$DIRNAME"; pwd`

# Run wing-install
exec python3 -O $WINGHOME/build-files/wing-install.py --uninstall --winghome $WINGHOME "$@"
