Skip to content

Commit

Permalink
Fixed marklogic-community#280: fixed path lookup for corb.jar
Browse files Browse the repository at this point in the history
  • Loading branch information
grtjn committed Mar 11, 2015
1 parent ebb8650 commit 4d9b290
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions deploy/lib/server_config.rb
Original file line number Diff line number Diff line change
Expand Up @@ -841,6 +841,11 @@ def corb
corb_file = find_jar("corb")
xcc_file = find_jar("xcc")

# Find the CORB jar
matches = Dir.glob(ServerConfig.expand_path("../java/*corb*.jar"))
raise "Missing CORB Jar." if matches.length == 0
corb_file = matches[0]

if install
# If we're installing, we need to change directories to the source
# directory, so that the xquery_modules will be visible with the
Expand Down

0 comments on commit 4d9b290

Please sign in to comment.