Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/commits-to-changelog.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/scripts/commits-to-changelog.py b/scripts/commits-to-changelog.py
index 744528fffb1..3de40bbe51a 100755
--- a/scripts/commits-to-changelog.py
+++ b/scripts/commits-to-changelog.py
@@ -247,6 +247,12 @@ def main ():
global path_to_root
path_to_root = options.root + "/"
+ #see if git supports %B in --format
+ output = git ("log", "-n1", "--format=%B", "HEAD")
+ if output.startswith ("%B"):
+ print >> sys.stderr, "Error: git doesn't support %B in --format - install version 1.7.2 or newer"
+ exit (1)
+
for filename in git ("ls-tree", "-r", "--name-only", "HEAD").splitlines ():
if re.search ("(^|/)Change[Ll]og$", filename):
(path, name) = os.path.split (filename)