Skip to content

Commit

Permalink
Successfully set up (#231)
Browse files Browse the repository at this point in the history
  • Loading branch information
brcrista committed May 3, 2022
1 parent 56a61c9 commit 193b404
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion __tests__/setup-go.test.ts
Expand Up @@ -684,7 +684,7 @@ describe('setup-go', () => {
expect(logSpy).toHaveBeenCalledWith('Adding to the cache ...');
expect(logSpy).toHaveBeenCalledWith('Added go to the path');
expect(logSpy).toHaveBeenCalledWith(
`Successfully setup go version ${versionSpec}`
`Successfully set up Go version ${versionSpec}`
);
});

Expand Down
2 changes: 1 addition & 1 deletion dist/index.js
Expand Up @@ -2091,7 +2091,7 @@ function run() {
}
let added = yield addBinToPath();
core.debug(`add bin ${added}`);
core.info(`Successfully setup go version ${versionSpec}`);
core.info(`Successfully set up Go version ${versionSpec}`);
}
// add problem matchers
const matchersPath = path_1.default.join(__dirname, '..', 'matchers.json');
Expand Down
2 changes: 1 addition & 1 deletion src/main.ts
Expand Up @@ -36,7 +36,7 @@ export async function run() {

let added = await addBinToPath();
core.debug(`add bin ${added}`);
core.info(`Successfully setup go version ${versionSpec}`);
core.info(`Successfully set up Go version ${versionSpec}`);
}

// add problem matchers
Expand Down

0 comments on commit 193b404

Please sign in to comment.