Skip to content
This repository was archived by the owner on Aug 1, 2023. It is now read-only.

Commit 51d0997

Browse files
committed
actually change the arrows back to functions
1 parent 14e6b07 commit 51d0997

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

index.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ module.exports = {
2222
if (context.config.firebase.deployToken || process.env.FIREBASE_TOKEN) {
2323
options.token = context.config.firebase.deployToken || process.env.FIREBASE_TOKEN;
2424
}
25-
return fbTools.deploy(options).then(() => {
25+
return fbTools.deploy(options).then(function() {
2626
outer.log('successful deploy!', {verbose: true});
27-
}).catch((err) => {
27+
}).catch(function(err) {
2828
// handle error
2929
outer.log('something bad happened oh no', { color: 'red' });
3030
outer.log(err, { color: 'red' });

0 commit comments

Comments
 (0)