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
Note the extracted folder includes the patch and causes following to fail in when installing node because the node-version does not have the patch specified.
mv /tmp/node-v$node_version-linux-x64/*$node_dir
The text was updated successfully, but these errors were encountered:
Installing binaries
Resolving node version 14.7...
Downloading and installing node 14.7.0...
Installing Node 14.7...
mv: cannot stat '/tmp/node-v14.7-linux-x64/*': No such file or directory
! Push rejected, failed to compile Phoenix app.
And resolved it by adding the precise version to my phoenix_static_buildpack.config file in the root of my project directory: node_version=14.7.0
Setting
node_version=10.15
in thephoenix_static_buildpack.config
led to a heroku build failure:Examining the result of
tar xzf /tmp/node-v10.15-linux-x64 -C /tmp
withls /tmp
we see the following:Note the extracted folder includes the patch and causes following to fail in when installing node because the node-version does not have the patch specified.
The text was updated successfully, but these errors were encountered: