rm make.sh

This commit is contained in:
zeek 2020-04-16 18:26:00 +08:00
parent ad2e5ffa23
commit fcde2f4cd9
1 changed files with 0 additions and 16 deletions

16
make.sh
View File

@ -1,16 +0,0 @@
#!/usr/bin/env bash
#author:zeekling
echo "compiling"
if [ ! -d target ];then
mkdir target
else
rm -rf target/*
fi
file=`find -name "*.java"`
echo "copying file"
all=`find -name "*"`
javac -g -source 8 -target 8 -d ./target/ ${file} -encoding UTF-8 &&
echo -e "\033[32mcompile finish *_*\033[0m \033[37m" ||
echo -e "\033[31mcompile error \033[0m \033[37m"