Skip to content

Commit

Permalink
correct sh with the new file name
Browse files Browse the repository at this point in the history
  • Loading branch information
benbenw committed Mar 10, 2016
1 parent 49a07ba commit 9965abb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main/bin/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ else
JAVA="java"
fi

if [ ! -f "$DIRNAME/kSar.jar" ] ; then
echo "Unable to find kSar.jar"
if [ ! -f "$DIRNAME/ksar.jar" ] ; then
echo "Unable to find ksar.jar"
exit 1;
fi

exec $JAVA $JAVA_OPT -jar $DIRNAME/kSar.jar $@
exec $JAVA $JAVA_OPT -jar $DIRNAME/ksar.jar $@

0 comments on commit 9965abb

Please sign in to comment.