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.
This commit is contained in:
Patrice Chalin 2016-11-08 07:41:27 -08:00 committed by Kathy Walrath
parent 5e79a1a2b5
commit 2808878c36
1 changed files with 1 additions and 1 deletions

View File

@ -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'];
}