From 7e2ae9f39f37eb8aeeb27323c3988d5e67b690cd Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Tue, 6 Oct 2015 07:32:22 +0200 Subject: [PATCH] Also install nodejs-legacy on Travis. This is needed to get /usr/bin/node which npm/eslint seem to use. --- scripts/dev/ci_install.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/dev/ci_install.py b/scripts/dev/ci_install.py index 05e3622f8..b9f337854 100644 --- a/scripts/dev/ci_install.py +++ b/scripts/dev/ci_install.py @@ -100,7 +100,7 @@ elif TRAVIS_OS == 'linux': if INSTALL_PYQT: pkgs += ['python3-pyqt5', 'python3-pyqt5.qtwebkit'] if TESTENV == 'eslint': - pkgs += ['npm', 'nodejs'] + pkgs += ['npm', 'nodejs', 'nodejs-legacy'] if pkgs: print("apt-get update...")