From 93a4e9cc2b951279008583cda4805f6947b0b1c0 Mon Sep 17 00:00:00 2001 From: George Karr Date: Fri, 3 Nov 2023 14:53:02 -0500 Subject: [PATCH] Update Building-Fleet.md (#14761) Fixing build instructions for Ubuntu as the previous instructions install an incompatible version of npm / nodejs --- docs/Contributing/Building-Fleet.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/Contributing/Building-Fleet.md b/docs/Contributing/Building-Fleet.md index e2d5e3b1db..d9f3e57d6f 100644 --- a/docs/Contributing/Building-Fleet.md +++ b/docs/Contributing/Building-Fleet.md @@ -35,6 +35,10 @@ Install dependencies: ```sh sudo apt-get install -y git golang make nodejs npm sudo npm install -g yarn +# Install nvm to manage node versions (apt very out of date) https://github.com/nvm-sh/nvm#install--update-script +curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.5/install.sh | bash +# refresh your session before continuing +nvm install v19.7.0 ``` #### Windows