Skip to content

Commit

Permalink
v0.76
Browse files Browse the repository at this point in the history
  • Loading branch information
matsumonkie committed Jan 26, 2021
1 parent c76de63 commit 7755455
Show file tree
Hide file tree
Showing 6 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -92,8 +92,8 @@ async function sendTarToIzuna(project, tarName) {
core.setFailed(`Could not upload project information to izuna server, url: ${url}, response: ${response}`);
return false;
}
} catch {
core.setFailed(`Could not upload project information to izuna server, url: ${url}, response: ${response}`);
} catch(error) {
core.setFailed(`Could not upload project information to izuna server, url: ${url}, error: ${error}`);
return false;
}
}
Expand Down
4 changes: 2 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,8 @@ async function sendTarToIzuna(project, tarName) {
core.setFailed(`Could not upload project information to izuna server, url: ${url}, response: ${response}`);
return false;
}
} catch {
core.setFailed(`Could not upload project information to izuna server, url: ${url}, response: ${response}`);
} catch(error) {
core.setFailed(`Could not upload project information to izuna server, url: ${url}, error: ${error}`);
return false;
}
}
Expand Down
Binary file modified node_modules/@vercel/ncc/dist/ncc/cli.js.cache
Binary file not shown.
Binary file modified node_modules/@vercel/ncc/dist/ncc/index.js.cache
Binary file not shown.
Binary file not shown.
Binary file not shown.

0 comments on commit 7755455

Please sign in to comment.