Skip to content

Commit

Permalink
Fixed marklogic-community#732: only attempt deploy_schemas if schemas…
Browse files Browse the repository at this point in the history
….dir exists
  • Loading branch information
grtjn committed May 28, 2017
1 parent b3c4e9b commit e5d0be0
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion deploy/lib/server_config.rb
Original file line number Diff line number Diff line change
Expand Up @@ -1188,7 +1188,9 @@ def clear
def install
bootstrap
deploy_modules
deploy_schemas
if File.exist?(@properties["ml.schemas.dir"])
deploy_schemas
end
if @properties["ml.triggers-db"] then
deploy_triggers
end
Expand Down

0 comments on commit e5d0be0

Please sign in to comment.