Skip to content

Commit

Permalink
Fix unrelated CI issue
Browse files Browse the repository at this point in the history
Introduced recently, but not breaking...
  • Loading branch information
paulo-ferraz-oliveira committed May 8, 2023
1 parent 8c41f70 commit 828aeef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/installer.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ async function installOTP(osVersion, otpVersion, hexMirrors) {
core.addPath(otpPath)
core.exportVariable('INSTALL_DIR_FOR_OTP', cachedPath)

console.log('Installed Erlang/OTP version')
core.info('Installed Erlang/OTP version')
await exec(path.join(otpPath, 'erl'), ['-version'])
} else if (OS === 'win32') {
if (!cachedPath) {
Expand All @@ -64,7 +64,7 @@ async function installOTP(osVersion, otpVersion, hexMirrors) {
core.addPath(otpPath)
core.exportVariable('INSTALL_DIR_FOR_OTP', otpDir)

console.log('Installed Erlang/OTP version')
core.info('Installed Erlang/OTP version')
await exec(path.join(otpPath, 'erl'), ['+V'])
}
} catch (err) {
Expand Down

0 comments on commit 828aeef

Please sign in to comment.