mirror of
https://github.com/Qortal/altcoinj.git
synced 2025-02-07 06:44:16 +00:00
10 lines
207 B
Bash
Executable File
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 $*
|