Use less predicatable folder names

This removes the count
This commit is contained in:
1computer1 2019-05-20 20:34:51 -04:00
parent 7a2f87da3f
commit d25e0be634
21 changed files with 44 additions and 50 deletions

View file

@ -1,7 +1,7 @@
mkdir "$COUNT" && cd "$COUNT"
mkdir "$CODEDIR" && cd "$CODEDIR"
export GOCACHE=/tmp/"$COUNT"/cache
export GOCACHE=/tmp/"$CODEDIR"/cache
echo "$1" > program.go
go run program.go
cd .. && rm -rf "$COUNT"
cd .. && rm -rf "$CODEDIR"