Skip to content

Commit

Permalink
Fix cache restore and update bundler
Browse files Browse the repository at this point in the history
Silence deprecation warnings about an older bundler version.

Signed-off-by: Aidan Delaney <[email protected]>
  • Loading branch information
AidanDelaney committed Jun 11, 2023
1 parent e2f242f commit f887645
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion apps/ruby-bundler/Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ DEPENDENCIES
sinatra

BUNDLED WITH
2.0.2
2.3.26
2 changes: 1 addition & 1 deletion buildpacks/ruby-bundler/bin/build
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ if [[ -f Gemfile.lock && ${local_bundler_checksum} == ${remote_bundler_checksum}
else
# Determine if there has been a gem dependency change and install new gems to the bundler layer; re-using existing and un-changed gems
echo "---> Installing gems"
mkdir "${bundler_layer_dir}"
mkdir -p "${bundler_layer_dir}"
cat > "${bundler_layer_dir}.toml" <<EOL
cache = true
launch = true
Expand Down

0 comments on commit f887645

Please sign in to comment.