Skip to content
This repository was archived by the owner on Dec 4, 2017. It is now read-only.

Commit 2808878

Browse files
chalinkwalrath
authored andcommitted
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.
1 parent 5e79a1a commit 2808878

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gulpfile.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -754,7 +754,7 @@ gulp.task('check-deploy', ['firebase-use-proj-check', 'build-docs'], () => {
754754
}).then(function(shouldDeploy) {
755755
if (shouldDeploy) {
756756
gutil.log('deploying...');
757-
return execPromise(`firebase deploy -p ${WWW}`);
757+
return execPromise('firebase deploy');
758758
} else {
759759
return ['Not deploying'];
760760
}

0 commit comments

Comments
 (0)