mirror of https://github.com/apache/poi.git
Adjust script to actually work
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1773624 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
6ba6aa7fff
commit
14fe3067cb
4
view.sh
4
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" = "" ]
|
||||
|
|
Loading…
Reference in New Issue