bitcoinj/tools/build-checkpoints
2015-08-07 17:01:11 +02:00

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 "$@"