mirror of
https://github.com/Cametendo/Cards-Gate.git
synced 2026-03-18 06:50:20 +01:00
11 lines
168 B
Bash
Executable File
11 lines
168 B
Bash
Executable File
#!/bin/bash
|
|
|
|
MAIN_CLASS="Main"
|
|
VERSION="2.13.1"
|
|
|
|
echo "Running $MAIN_CLASS..."
|
|
|
|
java -cp "out:lib/gson-${VERSION}.jar" $MAIN_CLASS
|
|
|
|
echo "Finished running $MAIN_CLASS"
|