From b6e41958c74fdfebad6ee3c6342ae2be7212d654 Mon Sep 17 00:00:00 2001 From: Joshua Santos Date: Thu, 7 Nov 2019 01:45:37 -0800 Subject: [PATCH] Change node version to 10.x Fixes the outdated node version suggested in docs per: https://github.com/screeps/screeps/issues/110 --- 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 ```