Skip to content

Commit

Permalink
Read file sync
Browse files Browse the repository at this point in the history
  • Loading branch information
ffried committed Apr 11, 2024
1 parent 619d1ac commit 9862eec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ async function install(installBase: string, branchName: string, versionTag: stri
if (!skipGPGCheck) {
await core.group('Verifying files', async () => {
if (core.isDebug())
core.debug('All Keys:\n' + await util.promisify(fs.readFile)(allKeysFile, 'utf8'));
core.debug('All Keys:\n' + fs.readFileSync(allKeysFile, { encoding: 'utf8' }));
await runCmd('gpg', '--import', allKeysFile);
let verifyArgs = ['--verify'];
if (!core.isDebug()) verifyArgs.push('--quiet');
Expand Down

0 comments on commit 9862eec

Please sign in to comment.