#!/bin/bash

if [ ! -d src/winbox-with-interactjs ] ; then
    cd src && \
	tar xvzf winbox-with-interactjs--gitfork.tar.gz && \
	cd ..
else
    echo ""
    echo "The directory 'src/winbox-with-interactjs' has already been untarred"
fi


if [ $? = 0 ] ; then
    echo ""
    echo "----"
    echo "Now run:"
    echo "  ./02-NPM-DEV-INSTALL.sh"
    echo "----"
    echo ""
fi


