File tree Expand file tree Collapse file tree 1 file changed +1
-15
lines changed Expand file tree Collapse file tree 1 file changed +1
-15
lines changed Original file line number Diff line number Diff line change @@ -263,17 +263,6 @@ 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
-
277
266
// Run our official install script to install the binary
278
267
await new Promise < void > ( ( resolve , reject ) => {
279
268
const cp = spawn (
@@ -292,14 +281,11 @@ export const downloadCoderVersion = async (
292
281
env : {
293
282
...process . env ,
294
283
XDG_CACHE_HOME : "/tmp/coder-e2e-cache" ,
295
- TRACE : "1" ,
296
284
} ,
297
285
} ,
298
286
) ;
299
287
// eslint-disable-next-line no-console -- Needed for debugging
300
- cp . stderr . on ( "data" , ( data ) =>
301
- console . log ( "--- KAYLA data from the thing ---\n" , data . toString ( ) ) ,
302
- ) ;
288
+ cp . stderr . on ( "data" , ( data ) => console . log ( data . toString ( ) ) ) ;
303
289
cp . on ( "close" , ( code ) => {
304
290
if ( code === 0 ) {
305
291
resolve ( ) ;
You can’t perform that action at this time.
0 commit comments