Skip to content

Commit

Permalink
Revert last commit
Browse files Browse the repository at this point in the history
  • Loading branch information
roryabraham committed Jun 23, 2023
1 parent 2cb1eb7 commit 654d5cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/libs/GitUtils.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ function getCommitHistoryAsJSON(fromTag, toTag) {
return new Promise((resolve, reject) => {
let stdout = '';
let stderr = '';
const args = ['log', '--format=\'{"commit": "%H", "authorName": "%an", "subject": "%s"},\'', `${fromTag}...${toTag}`];
const args = ['log', '--format={"commit": "%H", "authorName": "%an", "subject": "%s"},', `${fromTag}...${toTag}`];
console.log(`Running command: git ${args.join(' ')}`);
const spawnedProcess = spawn('git', args);
spawnedProcess.on('message', console.log);
Expand Down

0 comments on commit 654d5cd

Please sign in to comment.