Skip to content

Commit

Permalink
warn
Browse files Browse the repository at this point in the history
  • Loading branch information
StephenHodgson committed Sep 11, 2024
1 parent 2099861 commit a11bb9d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -33289,7 +33289,7 @@ async function setup_ovrPlatformUtil() {
}
catch (error) {
if (error.code === 'EBUSY') {
core.debug(`Waiting for ${tool} to be released...`);
core.warning(`Waiting for ${tool} to be released...`);
await new Promise(resolve => setTimeout(resolve, 1000));
await exec.exec(ovrPlatformUtil, ['help']);
}
Expand Down
2 changes: 1 addition & 1 deletion dist/index.js.map

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 @@ -51,7 +51,7 @@ async function setup_ovrPlatformUtil(): Promise<void> {
await exec.exec(ovrPlatformUtil, ['help']);
} catch (error) {
if (error.code === 'EBUSY') {
core.debug(`Waiting for ${tool} to be released...`);
core.warning(`Waiting for ${tool} to be released...`);
await new Promise(resolve => setTimeout(resolve, 1000));
await exec.exec(ovrPlatformUtil, ['help']);
}
Expand Down

0 comments on commit a11bb9d

Please sign in to comment.