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
When Flow detects that node needs to be installed locally, it will download it in $HOME/.vaadin folder.
If the expected file is already there, NodeInstaller will skip the download.
However, if a previous download failed, an empty file could be present. This leads to the download being skipped, but then the node executable could not be extracted and used.
[INFO] The globally installed Node.js version 18.7.0 is older than the required minimum version 18.12.0. Using Node.js from /root/.vaadin.
[10:21:38 ] [INFO] Updating current installed node version from 22.11.0 to 22.12.0
[10:21:38 ] [INFO] Node 22.11.0 was installed, but we need version v22.12.0
[10:21:38 ] [INFO] Installing node version v22.12.0
[10:21:38 ] [INFO] Unpacking /root/.vaadin/node-v22.12.0-linux-x64.tar.gz (0 bytes) into /root/.vaadin/node/tmp
Flow could force download when the expected file exists but its size is zero.
The text was updated successfully, but these errors were encountered:
Node seems to provide a text file with sha256 sums. https://nodejs.org/dist/v22.12.0/SHASUMS256.txt
so the downloader should always also download that and then we need to parse the checksum for the target file. {sum} {file}
When Flow detects that node needs to be installed locally, it will download it in
$HOME/.vaadin
folder.If the expected file is already there,
NodeInstaller
will skip the download.However, if a previous download failed, an empty file could be present. This leads to the download being skipped, but then the node executable could not be extracted and used.
Flow could force download when the expected file exists but its size is zero.
The text was updated successfully, but these errors were encountered: