mirror of
https://github.com/Qortal/altcoinj.git
synced 2025-02-12 18:25:51 +00:00
14 lines
241 B
Bash
Executable File
14 lines
241 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
# Check if the jar has been built.
|
|
if [ ! -e target/build-checkpoints.jar ]; then
|
|
echo "Compiling BuildCheckpoints to a JAR"
|
|
cd ..
|
|
mvn package -DskipTests
|
|
cd tools
|
|
fi
|
|
|
|
java -jar target/build-checkpoints.jar "$@"
|