mirror of
https://github.com/bitcoinj/bitcoinj.git
synced 2024-11-19 18:00:39 +01: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 "$@"
|