Skip to content

Commit c59440c

Browse files
authored
Merge branch 'develop' into zachw/skip-flaky-migration-test
2 parents 400d175 + f795151 commit c59440c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/semantic-commits/get-binary-release-data.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ const octokit = new Octokit({ auth: process.env.GITHUB_TOKEN })
1919
* @param {string} latestReleaseInfo.buildSha - git commit associated with published content
2020
*/
2121
const getChangedFilesSinceLastRelease = (latestReleaseInfo) => {
22-
const stdout = childProcess.execSync(`git diff ${latestReleaseInfo.buildSha}.. --name-only`)
22+
const stdout = childProcess.execSync(`git diff ${latestReleaseInfo.buildSha}.. --name-only`, { encoding: 'utf8' })
2323

2424
if (!stdout) {
2525
console.log('no files changes since last release')

0 commit comments

Comments
 (0)