File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff 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 } ` ) ;
Original file line number Diff line number Diff 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 } `
You can’t perform that action at this time.
0 commit comments