Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(219)

Unified Diff: clang_format_merge_driver.py

Issue 2388483004: Make merge driver complain about older gits (Closed)
Patch Set: Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: clang_format_merge_driver.py
diff --git a/clang_format_merge_driver.py b/clang_format_merge_driver.py
index 5f0449a28b10ebc65757b70f7b8591a28a9cdb4a..9b0cbb9436e13c4753c2eade18fa011420d1c555 100755
--- a/clang_format_merge_driver.py
+++ b/clang_format_merge_driver.py
@@ -27,6 +27,15 @@ def main():
sys.exit(1)
base, current, others, file_name_in_tree = sys.argv[1:5]
+
+ if file_name_in_tree == '%P':
+ print >>sys.stderr
+ print >>sys.stderr, 'ERROR: clang-format merge driver needs git 2.5+'
+ if sys.platform == 'darwin':
+ print >>sys.stderr, 'Upgrade to Xcode 7.2+'
+ print >>sys.stderr
+ return 1
+
print 'Running clang-format 3-way merge driver on ' + file_name_in_tree
try:
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698