Skip to content

Commit

Permalink
MONDRIAN: Fix for PSW-60, Working directory must be set for Schema Wo…
Browse files Browse the repository at this point in the history
…rkbench to work

[git-p4: depot-paths = "//open/mondrian/": change = 13036]
  • Loading branch information
Will Gorman committed Sep 11, 2009
1 parent 63145dc commit 08c573e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions workbench/workbench.sh
Expand Up @@ -64,12 +64,12 @@ CP="${CP}${PS}${HOME}/.schemaWorkbench"
# in the java command below to adjust workbench logging

# add all needed JDBC drivers to the classpath
for i in `ls drivers/*.jar 2> /dev/null`; do
for i in `ls ${MONDRIAN_HOME}/drivers/*.jar 2> /dev/null`; do
CP="${CP}${PS}${i}"
done

# add all needed plugins to the classpath
for i in `ls plugins/*.jar 2> /dev/null`; do
for i in `ls ${MONDRIAN_HOME}/plugins/*.jar 2> /dev/null`; do
CP="${CP}${PS}${i}"
done

Expand Down

0 comments on commit 08c573e

Please sign in to comment.