From d171c3d01d84e850380a7c4af290f1a3f766bfb1 Mon Sep 17 00:00:00 2001 From: Doug Morato Date: Fri, 21 Aug 2015 17:11:02 -0400 Subject: [PATCH] Fix developer_bootstrap script to check for correct directory names --- webgoat_developer_bootstrap.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/webgoat_developer_bootstrap.sh b/webgoat_developer_bootstrap.sh index 5ca401b55..aacb0283b 100755 --- a/webgoat_developer_bootstrap.sh +++ b/webgoat_developer_bootstrap.sh @@ -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