Skip to content

Commit

Permalink
Fix string
Browse files Browse the repository at this point in the history
  • Loading branch information
jwlawson committed Dec 1, 2023
1 parent 7944d97 commit 97da8d0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/index.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ async function run() {
required_version,
all_version_info
);
core.info(`Using version {chosen_version_info.name} of cmake`);
core.info(`Using cmake version ${chosen_version_info.name}`);

const use_32bits = core.getInput('use-32bit').toLowerCase() === 'true';
const arch_candidates = use_32bits ? ['x86'] : ['x86_64', 'x86'];
Expand Down

0 comments on commit 97da8d0

Please sign in to comment.