From 4487567629b74098fda23b56858a7aca89fe9fd3 Mon Sep 17 00:00:00 2001 From: androlo Date: Thu, 20 Dec 2018 12:12:53 +0100 Subject: Only select directories to skip the README. --- test/cmdlineTests.sh | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) (limited to 'test') diff --git a/test/cmdlineTests.sh b/test/cmdlineTests.sh index ba352015..fc84d8a0 100755 --- a/test/cmdlineTests.sh +++ b/test/cmdlineTests.sh @@ -216,15 +216,12 @@ printTask "Running general commandline tests..." printTask "Compiling various other contracts and libraries..." ( cd "$REPO_ROOT"/test/compilationTests/ - for dir in * + for dir in */ do - if [ "$dir" != "README.md" ] - then - echo " - $dir" - cd "$dir" - compileFull -w *.sol */*.sol - cd .. - fi + echo " - $dir" + cd "$dir" + compileFull -w *.sol */*.sol + cd .. done ) -- cgit v1.2.3