You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 16, 2024. It is now read-only.
So this if statement might return false even when yarn.lock exists, resulting yarn not being installed:
nodejs-engine-buildpack/bin/build
Line 35 in 08a1523
The affected if block:
I think it might come from this line which changes the workspace directory:
nodejs-engine-buildpack/lib/bootstrap.sh
Line 54 in 08a1523
Should be an easy fix. I propose two approaches:
Option 1: Change
if [[ -f "yarn.lock" ]]; thentoif [[ -f "$build_dir/yarn.lock" ]]; thenOption 2: Add
cd $build_dirafter this line:nodejs-engine-buildpack/bin/build
Line 25 in 08a1523
Thanks!