Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions ci/templates/src/compile.env.erb
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ bosh_bundle_local() {
bosh_generate_runtime_env() {
mkdir -p "${BOSH_INSTALL_TARGET}/bosh"
cat > "${BOSH_INSTALL_TARGET}/bosh/runtime.env" <<EOF
export GEM_HOME=${BOSH_INSTALL_TARGET}/gem_home/ruby/<%= ruby_patch_version %>
export PATH=${BOSH_INSTALL_TARGET}/bin:\${GEM_HOME}/bin:\${PATH}
export BUNDLE_GEMFILE=${BOSH_INSTALL_TARGET}/Gemfile
export PATH="${BOSH_INSTALL_TARGET}/bin:\${PATH}"
export GEM_HOME="${BOSH_INSTALL_TARGET}/gem_home/ruby/$(ruby -e 'puts Gem.ruby_api_version')"
Comment thread
aramprice marked this conversation as resolved.
export BUNDLE_GEMFILE="${BOSH_INSTALL_TARGET}/Gemfile"
Comment thread
aramprice marked this conversation as resolved.
EOF
}