From: Dominik Stadler Date: Sun, 11 Dec 2016 20:57:24 +0000 (+0000) Subject: Adjust script to actually work X-Git-Tag: REL_3_16_BETA2~229 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=14fe3067cb23684ea65f806927fb164befc30777;p=poi.git Adjust script to actually work git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1773624 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/view.sh b/view.sh index 96b924c3db..c92f877f4f 100755 --- a/view.sh +++ b/view.sh @@ -1,8 +1,8 @@ #!/bin/sh # find jar-file with highest version number -for i in `ls build/dist/poi-*.jar | grep -v -- "-sources" | grep -v -- "-examples" | grep -v -- "-excelant" | grep -v -- "-ooxml" | grep -v -- "-scratchpad"`;do - CP=$i +for i in `ls build/dist/poi-*.jar | grep -v -- "-sources" | grep -v -- "-examples" | grep -v -- "-excelant" | grep -v -- "-ooxml" | grep -v -- "-scratchpad" | grep -v -- "-javadoc"`;do + CP=$i:$CP done if [ "$CP" = "" ]