mirror of
https://github.com/Cametendo/Cards-Gate.git
synced 2026-03-18 04:40:20 +01:00
14 lines
183 B
Bash
Executable File
14 lines
183 B
Bash
Executable File
#!/bin/bash
|
|
|
|
VERSION="2.13.1"
|
|
|
|
echo "start building..."
|
|
|
|
set -e
|
|
|
|
mkdir -p out
|
|
|
|
javac -cp "lib/gson-${VERSION}.jar" -d out $(find Cards-Gate/src -name "*.java")
|
|
|
|
echo "build finished"
|