From bb04c36dafd38a0fcf1f1fc6bea696c152c11bdb Mon Sep 17 00:00:00 2001 From: shanejonas Date: Thu, 20 Jun 2019 15:36:09 -0700 Subject: [PATCH] fix: darwin node file path --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index c9f5778..47ce993 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -80,7 +80,7 @@ jobs: - run: name: "Update Node.js and npm" command: | - curl -sSL "https://nodejs.org/dist/v10.16.0/node-v10.16.0-darwin-x64.tar.gz" | sudo tar --strip-components=2 -xJ -C /usr/local/bin/ node-v10.16.0-mac-x64/bin/node + curl -sSL "https://nodejs.org/dist/v10.16.0/node-v10.16.0-darwin-x64.tar.gz" | sudo tar --strip-components=3 -xJ -C /usr/local/bin/ node-v10.16.0-darwin-x64/bin/node curl https://www.npmjs.com/install.sh | sudo bash - run: name: "Setup custom environment variables"