diff options
author | George L. Albany <Megacake1234@gmail.com> | 2024-10-31 19:26:11 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-31 19:26:11 +0000 |
commit | bebc98d4eab0ca9164282d9c0770914025751d24 (patch) | |
tree | 01f0912301ba267504666e4d9e21cffe41b51415 /misc/scripts/copyright_headers.py | |
parent | 259c757ccea4c8e223713019ca5ab95788fcf92e (diff) | |
parent | 4667b71811d16169440c320dc490bbe074e4d01b (diff) | |
download | redot-cpp-bebc98d4eab0ca9164282d9c0770914025751d24.tar.gz |
Merge pull request #1 from Redot-Engine/rebrand
Rebrand godot-cpp to redot-cpp
Diffstat (limited to 'misc/scripts/copyright_headers.py')
-rwxr-xr-x | misc/scripts/copyright_headers.py | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/misc/scripts/copyright_headers.py b/misc/scripts/copyright_headers.py index 2b1201b..2ffa01b 100755 --- a/misc/scripts/copyright_headers.py +++ b/misc/scripts/copyright_headers.py @@ -9,9 +9,11 @@ header = """\ /* $filename */ /**************************************************************************/ /* This file is part of: */ -/* GODOT ENGINE */ -/* https://godotengine.org */ +/* REDOT ENGINE */ +/* https://redotengine.org */ /**************************************************************************/ +/* Copyright (c) 2024-present Redot Engine contributors */ +/* (see REDOT_AUTHORS.md) */ /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */ /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */ /* */ @@ -76,8 +78,8 @@ for f in sys.argv[1:]: while line.strip() == "" and line != "": # Skip empty lines at the top line = fileread.readline() - if line.find("/**********") == -1: # Godot header starts this way - # Maybe starting with a non-Godot comment, abort header magic + if line.find("/**********") == -1: # Redot header starts this way + # Maybe starting with a non-Redot comment, abort header magic header_done = True while not header_done: # Handle header now |