File tree 1 file changed +14
-1
lines changed 1 file changed +14
-1
lines changed Original file line number Diff line number Diff line change @@ -263,6 +263,17 @@ export const downloadCoderVersion = async (
263
263
return binaryPath ;
264
264
}
265
265
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
+
266
277
// Run our official install script to install the binary
267
278
await new Promise < void > ( ( resolve , reject ) => {
268
279
const cp = spawn (
@@ -285,7 +296,9 @@ export const downloadCoderVersion = async (
285
296
} ,
286
297
) ;
287
298
// 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
+ ) ;
289
302
cp . on ( "close" , ( code ) => {
290
303
if ( code === 0 ) {
291
304
resolve ( ) ;
You can’t perform that action at this time.
0 commit comments