mirror of
				https://github.com/actions/setup-go.git
				synced 2025-10-31 07:16:23 +00:00 
			
		
		
		
	clean up
This commit is contained in:
		| @@ -106,10 +106,10 @@ function setGoEnvironmentVariables(goRoot: string) { | ||||
|   const goBin: string = process.env['GOBIN'] || ''; | ||||
|  | ||||
|   // set GOPATH and GOBIN as user value | ||||
|   if (!util.isNullOrUndefined(goPath)) { | ||||
|   if (goPath) { | ||||
|     core.exportVariable('GOPATH', goPath); | ||||
|   } | ||||
|   if (!util.isNullOrUndefined(goBin)) { | ||||
|   if (goBin) { | ||||
|     core.exportVariable('GOBIN', goBin); | ||||
|   } | ||||
| } | ||||
|   | ||||
		Reference in New Issue
	
	Block a user