minesweeper-java/compile.sh
2021-09-16 20:44:09 +08:00

8 lines
111 B
Bash
Executable File

#!/usr/bin/env bash
if [ -d bin ]; then rm -rf bin; fi
javac -d bin src/*.java
cp res/* bin
echo "完成!"