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:
parent
5e79a1a2b5
commit
2808878c36
|
@ -754,7 +754,7 @@ gulp.task('check-deploy', ['firebase-use-proj-check', 'build-docs'], () => {
|
||||||
}).then(function(shouldDeploy) {
|
}).then(function(shouldDeploy) {
|
||||||
if (shouldDeploy) {
|
if (shouldDeploy) {
|
||||||
gutil.log('deploying...');
|
gutil.log('deploying...');
|
||||||
return execPromise(`firebase deploy -p ${WWW}`);
|
return execPromise('firebase deploy');
|
||||||
} else {
|
} else {
|
||||||
return ['Not deploying'];
|
return ['Not deploying'];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue