summaryrefslogtreecommitdiff
path: root/packages/create-astro/src/shell.ts
diff options
context:
space:
mode:
authorGravatar natemoo-re <natemoo-re@users.noreply.github.com> 2023-08-15 17:27:28 +0000
committerGravatar astrobot-houston <fred+astrobot@astro.build> 2023-08-15 17:27:28 +0000
commit76a2ba270d04fa178e2c671c9bfef4ff787fdb7b (patch)
tree3fb85f38850519dba7add995c667309d723e4aa8 /packages/create-astro/src/shell.ts
parent04755e84658ea10914a09f3d07f302267326d610 (diff)
downloadastro-76a2ba270d04fa178e2c671c9bfef4ff787fdb7b.tar.gz
astro-76a2ba270d04fa178e2c671c9bfef4ff787fdb7b.tar.zst
astro-76a2ba270d04fa178e2c671c9bfef4ff787fdb7b.zip
[ci] format
Diffstat (limited to '')
-rw-r--r--packages/create-astro/src/shell.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/create-astro/src/shell.ts b/packages/create-astro/src/shell.ts
index 02dd941f1..e6f1295ea 100644
--- a/packages/create-astro/src/shell.ts
+++ b/packages/create-astro/src/shell.ts
@@ -35,7 +35,7 @@ export async function shell(
timeout: opts.timeout,
});
const done = new Promise((resolve) => child.on('close', resolve));
- ([stdout, stderr] = await Promise.all([text(child.stdout), text(child.stderr)]));
+ [stdout, stderr] = await Promise.all([text(child.stdout), text(child.stderr)]);
await done;
} catch (e) {
throw { stdout, stderr, exitCode: 1 };