From 2c56ec1f798327d00f7de4006a39886ee79008bc Mon Sep 17 00:00:00 2001 From: Jesse Zhang Date: Thu, 19 Apr 2012 15:43:27 -0700 Subject: [PATCH] [dev_setup][bugfix] Bundle install for UAA This change fixes a bug in Change Id22dbb00 (commit 8e5838b8). dev_setup will now install the bundle for UAA wrapper script. Change-Id: I8077709bedaf210904dab519ca8ee200f12ea77d --- dev_setup/cookbooks/uaa/recipes/default.rb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dev_setup/cookbooks/uaa/recipes/default.rb b/dev_setup/cookbooks/uaa/recipes/default.rb index ffd8291..b149234 100644 --- a/dev_setup/cookbooks/uaa/recipes/default.rb +++ b/dev_setup/cookbooks/uaa/recipes/default.rb @@ -18,3 +18,5 @@ bash "Grab dependencies for UAA" do cwd "#{node[:cloudfoundry][:path]}/uaa" code "#{node[:maven][:path]}/bin/mvn install -U -DskipTests=true" end + +cf_bundle_install(File.expand_path(File.join(node["cloudfoundry"]["path"], "uaa")))