Skip to content

Commit 0e3b543

Browse files
committed
what exactly is happening here?
1 parent 26fa3c6 commit 0e3b543

File tree

1 file changed

+14
-1
lines changed

1 file changed

+14
-1
lines changed

site/e2e/helpers.ts

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -263,6 +263,17 @@ export const downloadCoderVersion = async (
263263
return binaryPath;
264264
}
265265

266+
// eslint-disable-next-line no-console
267+
console.log(
268+
"--- KAYLA LOOK HERE THIS IS THE THING STUFF ---\n",
269+
version,
270+
"-",
271+
tempDir,
272+
"-",
273+
binaryName,
274+
"-",
275+
);
276+
266277
// Run our official install script to install the binary
267278
await new Promise<void>((resolve, reject) => {
268279
const cp = spawn(
@@ -285,7 +296,9 @@ export const downloadCoderVersion = async (
285296
},
286297
);
287298
// eslint-disable-next-line no-console -- Needed for debugging
288-
cp.stderr.on("data", (data) => console.log(data.toString()));
299+
cp.stderr.on("data", (data) =>
300+
console.log("--- KAYLA data from the thing ---\n", data.toString()),
301+
);
289302
cp.on("close", (code) => {
290303
if (code === 0) {
291304
resolve();

0 commit comments

Comments
 (0)