From 2808878c36d7429611e4f0584323e99c9b83219e Mon Sep 17 00:00:00 2001 From: Patrice Chalin Date: Tue, 8 Nov 2016 07:41:27 -0800 Subject: [PATCH] chore(deploy): don't name project in firebase deploy Naming the project would sometimes cause gulp to report `An unexpected error has occurred` with exit code 2. --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index 6dac9d40c4..d24edb1f16 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -754,7 +754,7 @@ gulp.task('check-deploy', ['firebase-use-proj-check', 'build-docs'], () => { }).then(function(shouldDeploy) { if (shouldDeploy) { gutil.log('deploying...'); - return execPromise(`firebase deploy -p ${WWW}`); + return execPromise('firebase deploy'); } else { return ['Not deploying']; }