3
0
mirror of https://github.com/Qortal/altcoinj.git synced 2025-01-31 07:12:17 +00:00
altcoinj/tools/wallet-tool

16 lines
340 B
Bash
Executable File

#!/bin/bash
set -e
# Check if the jar has been built.
if [ ! -e target/bitcoinj-tools-*.jar ] || [[ "$ALWAYS_BUILD_WALLETTOOL" != "" ]]; then
echo "Compiling WalletTool to a JAR"
cd ../core
mvn install -DskipTests
cd ../tools
rm target/bitcoinj-tools-*.jar
mvn package -DskipTests
fi
java -jar target/bitcoinj-tools-*.jar $*