#!/bin/sh

if [ -e $1 ]
then
	rm -r $1
fi

return 0

