Skip to content

Commit

Permalink
fix deb packager jar check
Browse files Browse the repository at this point in the history
  • Loading branch information
arifogel committed Aug 28, 2017
1 parent aa8a731 commit d92314d
Showing 1 changed file with 2 additions and 10 deletions.
12 changes: 2 additions & 10 deletions tools/package_ubuntu.sh
Original file line number Diff line number Diff line change
Expand Up @@ -227,16 +227,8 @@ package() {
BATFISH_USER=batfish
DEB_OUTPUT=debian.deb
set -x
if [ ! -f "$BATFISH_JAR_SRC" ]; then
echo "Missing $BATFISH_JAR_SRC" >&2
return 1
fi
if [ ! -f "$COORDINATOR_JAR_SRC" ]; then
echo "Missing $COORDINATOR_JAR_SRC" >&2
return 1
fi
if [ ! -f "$CLIENT_JAR_SRC" ]; then
echo "Missing $CLIENT_JAR_SRC" >&2
if [ ! -f "$ALLINONE_JAR_SRC" ]; then
echo "Missing $ALLINONE_JAR_SRC" >&2
return 1
fi
if [ ! -f "$QUESTION_JAR_SRC" ]; then
Expand Down

0 comments on commit d92314d

Please sign in to comment.