3
0
mirror of https://github.com/Qortal/altcoinj.git synced 2025-01-31 15:22:16 +00:00
altcoinj/tools/wallet-tool

14 lines
265 B
Plaintext
Raw Normal View History

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