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