diff --git a/CHANGES b/CHANGES index 82a217b96..ef0bf0440 100644 --- a/CHANGES +++ b/CHANGES @@ -10,6 +10,7 @@ Incompatible changes * #5282: html theme: refer ``pygments_style`` settings of HTML themes preferentially * The URL of download files are changed +* #5127: quickstart: ``Makefile`` and ``make.bat`` are not overwritten if exists Deprecated ---------- diff --git a/sphinx/cmd/quickstart.py b/sphinx/cmd/quickstart.py index 0cb2350c6..174298579 100644 --- a/sphinx/cmd/quickstart.py +++ b/sphinx/cmd/quickstart.py @@ -678,7 +678,7 @@ def main(argv=sys.argv[1:]): except ValueError: print(__('Invalid template variable: %s') % variable) - generate(d, templatedir=args.templatedir) + generate(d, overwrite=False, templatedir=args.templatedir) return 0