aboutsummaryrefslogtreecommitdiff
path: root/examples/spawn.ts
diff options
context:
space:
mode:
Diffstat (limited to 'examples/spawn.ts')
-rw-r--r--examples/spawn.ts4
1 files changed, 1 insertions, 3 deletions
diff --git a/examples/spawn.ts b/examples/spawn.ts
index d72a118b9..520fa60ff 100644
--- a/examples/spawn.ts
+++ b/examples/spawn.ts
@@ -7,9 +7,7 @@ const repo = process.argv.at(3) || "TheoBr/vercel-vite-demo";
const target = basename(repo) + "-main";
console.log("Downloading", repo, "to", "/tmp/" + target);
-const archive = await fetch(
- `https://github.com/${repo}/archive/refs/heads/main.tar.gz`,
-);
+const archive = await fetch(`https://github.com/${repo}/archive/refs/heads/main.tar.gz`);
// remove the directory if it already exists locally
rmSync("/tmp/" + target, { recursive: true, force: true });