Skip to content

Commit

Permalink
Update helper script to check commandline.jar
Browse files Browse the repository at this point in the history
  • Loading branch information
halprin committed Sep 25, 2017
1 parent e400f8a commit 514e0a2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions 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
Expand Down

0 comments on commit 514e0a2

Please sign in to comment.