Skip to content

Commit 7ea80d8

Browse files
casing
1 parent a6a701e commit 7ea80d8

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

dist/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1296,12 +1296,12 @@ function run() {
12961296
if (!installDir) {
12971297
console.log(`A version satisfying ${versionSpec} not found locally, attempting to download ...`);
12981298
installDir = yield installer.downloadGo(versionSpec, stable);
1299-
console.log('installed');
1299+
console.log('Installed');
13001300
}
13011301
if (installDir) {
13021302
core.exportVariable('GOROOT', installDir);
13031303
core.addPath(path.join(installDir, 'bin'));
1304-
console.log('added to the path');
1304+
console.log('Added go to the path');
13051305
}
13061306
else {
13071307
throw new Error(`Could not find a version that satisfied version spec: ${versionSpec}`);

src/main.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,13 @@ export async function run() {
2727
`A version satisfying ${versionSpec} not found locally, attempting to download ...`
2828
);
2929
installDir = await installer.downloadGo(versionSpec, stable);
30-
console.log('installed');
30+
console.log('Installed');
3131
}
3232

3333
if (installDir) {
3434
core.exportVariable('GOROOT', installDir);
3535
core.addPath(path.join(installDir, 'bin'));
36-
console.log('added to the path');
36+
console.log('Added go to the path');
3737
} else {
3838
throw new Error(
3939
`Could not find a version that satisfied version spec: ${versionSpec}`

0 commit comments

Comments
 (0)