Skip to content

Commit

Permalink
improve progress bar
Browse files Browse the repository at this point in the history
  • Loading branch information
thewh1teagle committed Dec 20, 2024
1 parent 4e3745f commit 5ebda83
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ function parsePatternsInput(patternsInput: string): string[] {

async function downloadAsset(asset: Asset): Promise<void> {
console.log(`Downloading ${asset.name}...`);
await $`wget ${asset.url} -O ${asset.name}`;
await $`wget --progress=bar:force:noscroll ${asset.url} -O ${asset.name}`;
}

async function generateChecksum(assetName: string): Promise<string> {
Expand Down

0 comments on commit 5ebda83

Please sign in to comment.