Skip to content

Commit

Permalink
Removing unused variable
Browse files Browse the repository at this point in the history
  • Loading branch information
Mike Pigott committed Feb 21, 2024
1 parent 307eb03 commit fde27ff
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -4117,7 +4117,7 @@ const run = async () => {

try {
// attempt to run firebase deploy, and run with debug mode if failed
const result = await _actions_exec__WEBPACK_IMPORTED_MODULE_1__.exec("firebase", args, options);
await _actions_exec__WEBPACK_IMPORTED_MODULE_1__.exec("firebase", args, options);

} catch (error) {
_actions_core__WEBPACK_IMPORTED_MODULE_0__.error(`An error occured while deploying to Firebase: ${error}. Retrying with debug mode enabled ...`);
Expand Down
2 changes: 1 addition & 1 deletion src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ const run = async () => {

try {
// attempt to run firebase deploy, and run with debug mode if failed
const result = await exec.exec("firebase", args, options);
await exec.exec("firebase", args, options);

} catch (error) {
core.error(`An error occured while deploying to Firebase: ${error}. Retrying with debug mode enabled ...`);
Expand Down

0 comments on commit fde27ff

Please sign in to comment.