From 7ea80d8e5f626d3855fddba816f30c7c5097dc8e Mon Sep 17 00:00:00 2001 From: Bryan MacFarlane Date: Sun, 9 Feb 2020 22:42:10 -0500 Subject: [PATCH] casing --- dist/index.js | 4 ++-- src/main.ts | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/dist/index.js b/dist/index.js index 82e9d4d..9ec051b 100644 --- a/dist/index.js +++ b/dist/index.js @@ -1296,12 +1296,12 @@ function run() { if (!installDir) { console.log(`A version satisfying ${versionSpec} not found locally, attempting to download ...`); installDir = yield installer.downloadGo(versionSpec, stable); - console.log('installed'); + console.log('Installed'); } if (installDir) { core.exportVariable('GOROOT', installDir); core.addPath(path.join(installDir, 'bin')); - console.log('added to the path'); + console.log('Added go to the path'); } else { throw new Error(`Could not find a version that satisfied version spec: ${versionSpec}`); diff --git a/src/main.ts b/src/main.ts index aa00a48..d3bfd42 100644 --- a/src/main.ts +++ b/src/main.ts @@ -27,13 +27,13 @@ export async function run() { `A version satisfying ${versionSpec} not found locally, attempting to download ...` ); installDir = await installer.downloadGo(versionSpec, stable); - console.log('installed'); + console.log('Installed'); } if (installDir) { core.exportVariable('GOROOT', installDir); core.addPath(path.join(installDir, 'bin')); - console.log('added to the path'); + console.log('Added go to the path'); } else { throw new Error( `Could not find a version that satisfied version spec: ${versionSpec}`