1
0
Fork 0
mirror of https://code.forgejo.org/actions/setup-go synced 2025-06-08 11:38:22 +02:00

Fix formatting

This commit is contained in:
Josh Gross 2022-03-14 12:23:03 -04:00
parent 2a34c33bd7
commit 802876f7c7
No known key found for this signature in database
GPG key ID: 17A6308EA2144978
2 changed files with 4 additions and 5 deletions

View file

@ -30,7 +30,7 @@ export async function run() {
const version = installer.makeSemver(versionSpec);
// Go versions less than 1.9 require GOROOT to be set
if (semver.lt(version, '1.9.0')) {
core.info("Setting GOROOT for Go version < 1.9");
core.info('Setting GOROOT for Go version < 1.9');
core.exportVariable('GOROOT', installDir);
}