Skip to content

Commit

Permalink
fix: remove unnecessary await
Browse files Browse the repository at this point in the history
  • Loading branch information
pvdlg committed Dec 10, 2019
1 parent 9ecc7a3 commit 9a1af4d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Expand Up @@ -132,7 +132,7 @@ async function run(context, plugins) {
throw new AggregateError(errors);
}

context.lastRelease = await getLastRelease(context);
context.lastRelease = getLastRelease(context);
if (context.lastRelease.gitHead) {
context.lastRelease.gitHead = await getTagHead(context.lastRelease.gitHead, {cwd, env});
}
Expand Down

0 comments on commit 9a1af4d

Please sign in to comment.