fix(payload_api, git_diff): Accessing correct property in payload and Replacing --quiet with --no-patch in git diff (#1934)

This commit is contained in:
Aravind
2024-02-18 04:01:02 +05:30
committed by GitHub
parent 68bd4537bd
commit e3cac49049
2 changed files with 2 additions and 2 deletions

View File

@@ -908,7 +908,7 @@ export const canDiffCommits = async ({
} else {
const {exitCode, stderr} = await exec.getExecOutput(
'git',
['diff', '--quiet', sha1, sha2],
['diff', '--no-patch', sha1, sha2],
{
cwd,
ignoreReturnCode: true,