We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fc2a994 commit 67a4f64Copy full SHA for 67a4f64
examples/bs-self-updater-example/index.ts
@@ -36,7 +36,7 @@ async function downloadAndUnzipFile(
36
if (res.status === 200) {
37
const buffer = Buffer.from(await res.arrayBuffer());
38
await decompress(buffer, dest);
39
- console.log(`Downloaded and unzipped zip to ${dest}`);
+ console.log(`Downloaded zip and unzipped contents to ${dest}`);
40
return true;
41
} else {
42
const err = await res.json();
0 commit comments