Skip to content

Commit

Permalink
fix: add missing quite handling for stdout
Browse files Browse the repository at this point in the history
  • Loading branch information
hoonoh committed Oct 15, 2019
1 parent 1afe621 commit 47f3441
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lib.ts
Original file line number Diff line number Diff line change
Expand Up @@ -131,10 +131,10 @@ export const getGlobalSpotPrices = async (
secretAccessKey,
});
rtn = [...rtn, ...regionsPrices];
process.stdout.write('.');
if (!quiet) process.stdout.write('.');
}),
);
process.stdout.write('\n');
if (!quiet) process.stdout.write('\n');

rtn = rtn.reduce(
(list, cur) => {
Expand Down

0 comments on commit 47f3441

Please sign in to comment.