blob: 3453d9862db70607b1df2086ae57198f2c53d85b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/bin/sh
if [ -z "$1" ]; then
echo "You must provide an iReport directory."
exit
fi
directory=$1
rm -I $(ls *.jar | grep -v postgresql | grep -v xmlrpc | grep -v ws-commons-util | grep -v gettext-commons)
cp $directory/ireport/modules/ext/*.jar .
cp $directory/ireport/libs/xalan.jar .
|