Skip to content

Commit

Permalink
Prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
gaearon committed Feb 26, 2020
1 parent c1c5499 commit efaffc4
Showing 1 changed file with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,12 @@ const run = async ({cwd, packages, tags}) => {

// Each container stores an "error-codes" artifact, unfortunately.
// We want to use the one that also ran `yarn build` since it may have modifications.
const {node_index} = artifacts.find(
entry => entry.path.endsWith('node_modules.tgz')
const {node_index} = artifacts.find(entry =>
entry.path.endsWith('node_modules.tgz')
);
const {url} = artifacts.find(
entry =>
entry.node_index === node_index &&
entry.path.endsWith('codes.json')
entry.node_index === node_index && entry.path.endsWith('codes.json')
);

// Download and stage changers
Expand Down

0 comments on commit efaffc4

Please sign in to comment.