target link was being created incorrectly

If the target symbolic link already existed, an invalid link in target
was created to java/target. Fixed by checking if the link exists before
creating it

Change-Id: I3ebcdcf0de1412838d78a2d2e647e265c41502e8
This commit is contained in:
Craig Bryant 2015-08-20 10:53:50 -06:00
parent 452c020f63
commit 5a2f4ff7e3
1 changed files with 3 additions and 1 deletions

View File

@ -42,7 +42,9 @@ RC=$?
# Copy the jars where the publisher will find them
if [ $RUN_BUILD = "true" ]; then
ln -sf java/target target
if [ ! -L target ]; then
ln -sf java/target target
fi
fi
rm -fr apache-maven-3.2.1*