#!/bin/sh 

# Message our PPID to the parent so we can wait for it.
echo "PID: $$"

INSTALL_DIR="/usr/local/bin"

echo "Uninstalling ksdiff and helper tools from $INSTALL_DIR..."

# Remove KS1 KSDiff files if they exist.
rm -f $INSTALL_DIR/ksdiff-svnwrapper
rm -f $INSTALL_DIR/ksdiff-wrapper

# Remove KS2 KSDiff
rm -f $INSTALL_DIR/ksdiff

echo "ksdiff and helper tools were successfully uninstalled from $INSTALL_DIR"
exit 0
