3
0
mirror of https://github.com/Qortal/altcoinj.git synced 2025-02-07 14:54:15 +00:00
altcoinj/tools/wallet-tool

10 lines
207 B
Bash
Executable File

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