File tree Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -39,6 +39,12 @@ async function main() {
39
39
}
40
40
if ( installResult . status !== 0 ) {
41
41
console . error ( `Extension installation failed with exit code: ${ installResult . status } ` ) ;
42
+ if ( installResult . stderr ) {
43
+ console . error ( '[DEBUG] stderr:' , installResult . stderr . toString ( ) ) ;
44
+ }
45
+ if ( installResult . stdout ) {
46
+ console . error ( '[DEBUG] stdout:' , installResult . stdout . toString ( ) ) ;
47
+ }
42
48
}
43
49
} else {
44
50
console . log ( '[DEBUG] Non-Windows detected' ) ;
@@ -58,6 +64,12 @@ async function main() {
58
64
}
59
65
if ( installResult . status !== 0 ) {
60
66
console . error ( `Extension installation failed with exit code: ${ installResult . status } ` ) ;
67
+ if ( installResult . stderr ) {
68
+ console . error ( '[DEBUG] stderr:' , installResult . stderr . toString ( ) ) ;
69
+ }
70
+ if ( installResult . stdout ) {
71
+ console . error ( '[DEBUG] stdout:' , installResult . stdout . toString ( ) ) ;
72
+ }
61
73
}
62
74
}
63
75
console . log ( 'Extensions installed, ready to run tests.' ) ;
You can’t perform that action at this time.
0 commit comments