Skip to content

Commit aad093b

Browse files
committed
Make build script not crash if ./out already exists
1 parent dd48989 commit aad093b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
mkdir ./out
1+
[ -d ./out ] || mkdir ./out
22
find -name "*.java" > sources.txt
33
javac -d ./out @sources.txt
44
cd ./out

0 commit comments

Comments
 (0)