From 269e944252857292920d211cb02958924d5b2dff Mon Sep 17 00:00:00 2001 From: Aidan Hahn Date: Thu, 23 May 2019 23:59:20 -0700 Subject: [PATCH] dont assume resources dir already exists. --- README.md | 2 +- buildwrapper.sh | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 1797e69..e3e2203 100644 --- a/README.md +++ b/README.md @@ -38,4 +38,4 @@ At this point you can copy the staging/client or staging/server folders to any e # Testing Running the gradle test task, or the buildwrapper will run all junit tests. -Currently that includes a test of certificate based authentication (Mutual TLS), tests for the thread safe process control module, and tests ensureing that only one thread can edit process information at a time. +Currently that includes a test of certificate based authentication (Mutual TLS), tests for the thread safe process control module, and tests ensuring that only one connection can access a processes information at a time. diff --git a/buildwrapper.sh b/buildwrapper.sh index c391e4c..b27a86c 100755 --- a/buildwrapper.sh +++ b/buildwrapper.sh @@ -12,7 +12,8 @@ TEST_CN=localhost TEST_PATH=resources/test # refactor this to test for directory existanc -rm -rf resources/* +rm -rf resources +mkdir resources/ mkdir resources/client mkdir resources/server mkdir resources/test