Skip to content

Commit f1d5497

Browse files
committed
The classpath is now automatically set in the dbbuilder.sh script (for Unix only)
1 parent ea9f2c2 commit f1d5497

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/main/scripts/dbBuilder.sh

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,10 @@ SILVERPEAS_PROPERTIES=$SILVERPEAS_HOME/properties
1616

1717
LINEARGS="-T $SRV_SERVERTYPE $ACTIONPARAM $VERBOSEPARAM"
1818

19-
CLASSPATH=${classpath}
19+
JARDIR=$SILVERPEAS_HOME/bin/jar
20+
for jarlib in `ls $JARDIR`; do
21+
CLASSPATH=$CLASSPATH:$JARDIR/$jarlib
22+
done
2023
export CLASSPATH
2124

2225
echo $CLASSPATH

0 commit comments

Comments
 (0)