Skip to content

Commit 9a7e6bf

Browse files
authored
Add --no-show-signature to "git show" commands (#23038)
* Add --no-show-signature to "git show" commands. This fixes errors if the user has configured the following in their ~/.gitconfig: [log] showSignature = true * yarn prettier-all
1 parent 2f26eb8 commit 9a7e6bf

File tree

3 files changed

+14
-6
lines changed

3 files changed

+14
-6
lines changed

packages/react-devtools-extensions/utils.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ const GITHUB_URL = 'https://github.com/facebook/react';
2020

2121
function getGitCommit() {
2222
try {
23-
return execSync('git show -s --format=%h')
23+
return execSync('git show -s --no-show-signature --format=%h')
2424
.toString()
2525
.trim();
2626
} catch (error) {

scripts/release/utils.js

+4-2
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,9 @@ const getBuildInfo = async () => {
7272
const branch = await execRead('git branch | grep \\* | cut -d " " -f2', {
7373
cwd,
7474
});
75-
const commit = await execRead('git show -s --format=%h', {cwd});
75+
const commit = await execRead('git show -s --no-show-signature --format=%h', {
76+
cwd,
77+
});
7678
const checksum = await getChecksumForCurrentRevision(cwd);
7779
const dateString = await getDateStringForCommit(commit);
7880
const version = isExperimental
@@ -106,7 +108,7 @@ const getChecksumForCurrentRevision = async cwd => {
106108

107109
const getDateStringForCommit = async commit => {
108110
let dateString = await execRead(
109-
`git show -s --format=%cd --date=format:%Y%m%d ${commit}`
111+
`git show -s --no-show-signature --format=%cd --date=format:%Y%m%d ${commit}`
110112
);
111113

112114
// On CI environment, this string is wrapped with quotes '...'s

scripts/rollup/build-all-release-channels.js

+9-3
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,18 @@ const {
1919
// by configuring an environment variable.
2020

2121
const sha = String(
22-
spawnSync('git', ['show', '-s', '--format=%h']).stdout
22+
spawnSync('git', ['show', '-s', '--no-show-signature', '--format=%h']).stdout
2323
).trim();
2424

2525
let dateString = String(
26-
spawnSync('git', ['show', '-s', '--format=%cd', '--date=format:%Y%m%d', sha])
27-
.stdout
26+
spawnSync('git', [
27+
'show',
28+
'-s',
29+
'--no-show-signature',
30+
'--format=%cd',
31+
'--date=format:%Y%m%d',
32+
sha,
33+
]).stdout
2834
).trim();
2935

3036
// On CI environment, this string is wrapped with quotes '...'s

0 commit comments

Comments
 (0)