Fix developer_bootstrap script to check for correct directory names

This commit is contained in:
Doug Morato 2015-08-21 17:11:02 -04:00
parent 9d03fe5b10
commit d171c3d01d

View File

@ -5,10 +5,10 @@
# Happy hacking !
# Clone WebGoat and WebGoat-lessons from GitHub if they don't exist
if [ ! -d "Webgoat" ]; then
if [ ! -d "WebGoat" ]; then
git clone https://github.com/WebGoat/WebGoat.git
fi
if [ ! -d "Webgoat-Lessons" ]; then
if [ ! -d "WebGoat-Lessons" ]; then
git clone https://github.com/WebGoat/WebGoat-Lessons.git
fi