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() {
3939 }
4040 if ( installResult . status !== 0 ) {
4141 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+ }
4248 }
4349 } else {
4450 console . log ( '[DEBUG] Non-Windows detected' ) ;
@@ -58,6 +64,12 @@ async function main() {
5864 }
5965 if ( installResult . status !== 0 ) {
6066 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+ }
6173 }
6274 }
6375 console . log ( 'Extensions installed, ready to run tests.' ) ;
You can’t perform that action at this time.
0 commit comments