From 09d250f0405f88682aa99b23b6e60b63d84b6c14 Mon Sep 17 00:00:00 2001 From: geoffpotter Date: Sun, 20 Oct 2019 00:20:43 -0400 Subject: [PATCH] Update ps_ubuntu.md for Node 10 change I fiddled around quite a bit before getting 'npm install screeps' to run, but changing to node 10 seems to be the only change I actually needed. --- source/contributed/ps_ubuntu.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/contributed/ps_ubuntu.md b/source/contributed/ps_ubuntu.md index 99b25e44..76c719e0 100644 --- a/source/contributed/ps_ubuntu.md +++ b/source/contributed/ps_ubuntu.md @@ -34,7 +34,7 @@ sudo apt install -y build-essential tcl git The main world runs on Node8, but Ubuntu only provides an older version of Node6. Fortunately there is another apt repository we can use to get the most up to date versions. ```shell -curl -sL https://deb.nodesource.com/setup_8.x | sudo -E bash - +curl -sL https://deb.nodesource.com/setup_10.x | sudo -E bash - sudo apt install -y nodejs ```