Skip to content

Commit

Permalink
Add missing await
Browse files Browse the repository at this point in the history
Signed-off-by: Chance Zibolski <[email protected]>
  • Loading branch information
chancez committed Mar 31, 2023
1 parent f58d517 commit 3db6626
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ async function run() {
// to just the CRDs.
// Output the CRDs to a new file and then kubectl apply them.
if (upgradeCRDs) {
const crds = extractCRDs(chart, version, repo);
const crds = await extractCRDs(chart, version, repo);
core.debug(`crds returned from extractCRDs ${crds}`);
if (crds.length != 0) {
const crdsFile = `${outputsDir}/crds.yml`;
Expand Down

0 comments on commit 3db6626

Please sign in to comment.