mirror of
				https://github.com/actions/setup-go.git
				synced 2025-11-03 22:20:38 -05:00 
			
		
		
		
	add debug
This commit is contained in:
		@@ -62,10 +62,14 @@ export async function run() {
 | 
			
		||||
function addBinToPath(): boolean {
 | 
			
		||||
  let added = false;
 | 
			
		||||
  let buf = cp.execSync('go env GOPATH');
 | 
			
		||||
 | 
			
		||||
  if (buf) {
 | 
			
		||||
    let d = buf.toString().trim();
 | 
			
		||||
    core.debug(`go env GOPATH: ${d}`);
 | 
			
		||||
    let bp = path.join(d, 'bin');
 | 
			
		||||
  
 | 
			
		||||
    if (fs.existsSync(bp)) {
 | 
			
		||||
      core.debug(`${bp} exists`);
 | 
			
		||||
      core.addPath(bp);
 | 
			
		||||
      added = true;
 | 
			
		||||
    }
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user