mirror of
https://github.com/Qortal/altcoinj.git
synced 2025-02-13 02:35:52 +00:00
14 lines
241 B
Plaintext
14 lines
241 B
Plaintext
|
#!/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 "$@"
|