删除原来的编译脚本

This commit is contained in:
LingZhaoHui 2020-11-15 14:29:36 +08:00
parent 6a9a705692
commit 2eb67310dd
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"