Skip to content

Commit 0cd2720

Browse files
committed
Use append in code snippet
Fix code snippet that incorrectly truncated `bundler.toml` Signed-off-by: Aidan Delaney <[email protected]>
1 parent 0bae261 commit 0cd2720

File tree

1 file changed

+1
-1
lines changed
  • content/docs/buildpack-author-guide/create-buildpack

1 file changed

+1
-1
lines changed

content/docs/buildpack-author-guide/create-buildpack/caching.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ else
169169
# Determine if there has been a gem dependency change and install new gems to the bundler layer; re-using existing and un-changed gems
170170
echo "---> Installing gems"
171171
mkdir -p "$bundlerlayer"
172-
cat > "$layersdir/bundler.toml" << EOL
172+
cat >> "$layersdir/bundler.toml" << EOL
173173
[metadata]
174174
checksum = "$local_bundler_checksum"
175175
EOL

0 commit comments

Comments
 (0)