Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
Signed-off-by: Outsider <[email protected]>
  • Loading branch information
outsideris committed Aug 1, 2023
1 parent 1b86bac commit 8970651
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/provider/provider.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ const sign = (shaSumsFile, targetDir, gpgKey) =>
keyOption = `--default-key ${gpgKey} `;
}
exec(`gpg --list-secret-keys`, { cwd: targetDir }, (err2, stdout) => {
console.log('gpg --list-secret-keys')
console.log('gpg --list-secret-keys');
if (err2) {
return reject(err2);
}
console.log(stdout)
console.log(stdout);
exec(`gpg --detach-sign ${keyOption} --yes ${shaSumsFile}`, { cwd: targetDir }, (err) => {
if (err) {
return reject(err);
Expand Down

0 comments on commit 8970651

Please sign in to comment.