X Tutup
Skip to content

Commit 01c9113

Browse files
build: fix path to git attributes for for patch export (electron#24896)
1 parent 481b19b commit 01c9113

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed

script/lib/git.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ def format_patch(repo, since):
190190
'-C',
191191
repo,
192192
'-c',
193-
'core.attributesfile=' + os.path.join(os.path.dirname(os.path.realpath(__file__)), '.electron.attributes'),
193+
'core.attributesfile=' + os.path.join(os.path.dirname(os.path.realpath(__file__)), 'electron.gitattributes'),
194194
# Ensure it is not possible to match anything
195195
# Disabled for now as we have consistent chunk headers
196196
# '-c',

0 commit comments

Comments
 (0)
X Tutup