From 57c6f80d723849ac89891ed5aeb78197c30ec6ed Mon Sep 17 00:00:00 2001 From: Benjamin Atkin Date: Sat, 2 Dec 2017 09:12:57 -0800 Subject: [PATCH] use underscore in node_modules in travis config (#3369) The cached directory for node_modules has a dash. AFAIK node uses an underscore, not a dash, for node_modules. Alternatively, remove it from cached directories if the typo isn't causing any problems. --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index b00cb9d9..dbb967eb 100644 --- a/.travis.yml +++ b/.travis.yml @@ -10,7 +10,7 @@ language: "node_js", node_js: ["6"], cache: { - directories: ["node-modules"] + directories: ["node_modules"] }, before_install: [ "rm yarn.lock",