Skip to content

Commit 519bfeb

Browse files
committed
don't format with double quotes
1 parent 3ef4941 commit 519bfeb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/github.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ export async function generateChangelog(
6565
if (lastReleaseVersion) {
6666
// Find all the commits between the current release and the last release.
6767
const command = shell.exec(
68-
`git --no-pager log ${lastReleaseVersion}...${currentVersion} --pretty=format:'"%H"'`,
68+
`git --no-pager log ${lastReleaseVersion}...${currentVersion} --pretty=format:%H`,
6969
{silent: true}
7070
)
7171
core.info(`Executed git log with output ${command}`)

0 commit comments

Comments
 (0)