From 514e0a24c28995ae9844ffe9f6788f1a2d910c79 Mon Sep 17 00:00:00 2001 From: halprin Date: Mon, 25 Sep 2017 09:54:50 -0600 Subject: [PATCH] Update helper script to check commandline.jar --- convert.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/convert.sh b/convert.sh index e70cd3e9a..d8b6eadaa 100755 --- a/convert.sh +++ b/convert.sh @@ -1,9 +1,9 @@ #!/bin/sh -if [ ! -f converter/target/converter.jar ]; then +if [ ! -f commandline/target/commandline.jar ]; then echo "Jar not found. Building..." mvn package -Dmaven.test.skip=true - if [ ! -f converter/target/converter.jar ]; then + if [ ! -f commandline/target/commandline.jar ]; then echo "Build failed. Aborting." exit 1 fi