From 26912547ce8f03175da50806bcbd57e258d31c18 Mon Sep 17 00:00:00 2001 From: Mike Hearn Date: Thu, 5 Jul 2012 16:01:44 +0200 Subject: [PATCH] Fix minor bug in wallet-tool wrapper script (it sucks anyway) --- tools/wallet-tool | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/wallet-tool b/tools/wallet-tool index 30053dc46..306a7143f 100755 --- a/tools/wallet-tool +++ b/tools/wallet-tool @@ -8,7 +8,7 @@ if [ ! -e target/bitcoinj-tools-*.jar ] || [[ "$ALWAYS_BUILD_WALLETTOOL" != "" ] cd ../core mvn install -DskipTests cd ../tools - rm target/bitcoinj-tools-*.jar + [ -e target/bitcoinj-tools-*.jar ] && rm target/bitcoinj-tools-*.jar mvn package -DskipTests fi