bin/appbundle-updater in appbundle-updater-1.0.8 vs bin/appbundle-updater in appbundle-updater-1.0.23
- old
+ new
@@ -272,9 +272,14 @@
cmd = "#{bin_dir.join("bundle")} install"
cmd += " --without #{app.bundle_without}" if app.bundle_without
ruby(cmd)
end
+ banner("Re-installing git-installed gems")
+ Dir.chdir(app_dir) do
+ ruby("post-bundle-install.rb #{chefdk}") if File.exist?("#{app_dir}/post-bundle-install.rb")
+ end
+
banner("Installing gem")
Dir.chdir(app_dir) do
Array(install_commands).each do |command|
ruby(command)
end