From 3be8ccf68d0a511633daa76c78131b6d891cb4cf Mon Sep 17 00:00:00 2001 From: Brian Donovan Date: Thu, 9 Apr 2015 14:46:10 -0700 Subject: [PATCH] Prevent this command from failing during CI. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 4000a84f56..d702bdc535 100644 --- a/Makefile +++ b/Makefile @@ -109,7 +109,7 @@ publish-cli: npm publish bootstrap: - npm list --global --depth 1 babel >/dev/null 2>&1 && npm uninstall -g babel + npm list --global --depth 1 babel >/dev/null 2>&1 && npm uninstall -g babel || true npm install npm link cd packages/babel-cli && npm install && npm link && npm link babel-core