prepared file structure for independent project
This commit is contained in:
8
compileProject.sh
Normal file
8
compileProject.sh
Normal file
@@ -0,0 +1,8 @@
|
||||
#!/usr/bin/env bash
|
||||
set -uo pipefail
|
||||
|
||||
if [[ $# -ge 1 && $1 == "clean" ]]; then
|
||||
rm -r target/;
|
||||
fi
|
||||
|
||||
javac -Xlint -d target/ src/**/*.java;
|
Reference in New Issue
Block a user