Skip to content
This repository has been archived by the owner on Apr 25, 2022. It is now read-only.

Commit

Permalink
refactor(chart:list-images): use execa sync instead of await
Browse files Browse the repository at this point in the history
  • Loading branch information
felipecrs committed Mar 15, 2021
1 parent 261625d commit c5807a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/commands/chart/list-images.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export default class SaveImage extends Command {

for (const chart of charts) {
templates.push(
...(await execa.command(`helm template ${chart}`)).stdout.split("---")
...execa.commandSync(`helm template ${chart}`).stdout.split("---")
);
}

Expand Down

0 comments on commit c5807a7

Please sign in to comment.