@@ -80,7 +80,7 @@ export class Install {
8080 } else {
8181 vspec = await Git . getRemoteSha ( repo , ref ) ;
8282 }
83- core . debug ( `Tool version spec ${ vspec } ` ) ;
83+ core . debug ( `Install.build: tool version spec ${ vspec } ` ) ;
8484
8585 let toolPath : string ;
8686 toolPath = tc . find ( 'buildx' , vspec ) ;
@@ -112,16 +112,16 @@ export class Install {
112112
113113 let buildStandalone = false ;
114114 if ( this . standalone && buildxStandaloneFound ) {
115- core . debug ( `Buildx standalone found, build with it` ) ;
115+ core . debug ( `Install.buildCommand: Buildx standalone found, build with it` ) ;
116116 buildStandalone = true ;
117117 } else if ( ! this . standalone && buildxPluginFound ) {
118- core . debug ( `Buildx plugin found, build with it` ) ;
118+ core . debug ( `Install.buildCommand: Buildx plugin found, build with it` ) ;
119119 buildStandalone = false ;
120120 } else if ( buildxStandaloneFound ) {
121- core . debug ( `Buildx plugin not found, but standalone found so trying to build with it` ) ;
121+ core . debug ( `Install.buildCommand: Buildx plugin not found, but standalone found so trying to build with it` ) ;
122122 buildStandalone = true ;
123123 } else if ( buildxPluginFound ) {
124- core . debug ( `Buildx standalone not found, but plugin found so trying to build with it` ) ;
124+ core . debug ( `Install.buildCommand: Buildx standalone not found, but plugin found so trying to build with it` ) ;
125125 buildStandalone = false ;
126126 } else {
127127 throw new Error ( `Neither buildx standalone or plugin have been found to build from ref ${ gitContext } ` ) ;
0 commit comments