Only select directories to skip the README.

This commit is contained in:
androlo 2018-12-20 12:12:53 +01:00 committed by chriseth
parent 8690898ac1
commit 4487567629

View File

@ -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
)