Rename update_icons.py to update_icon_entries.py

This commit is contained in:
Serhii Snitsaruk 2024-08-07 17:11:51 +02:00
parent d5becadd59
commit 2528741333
No known key found for this signature in database
GPG Key ID: A965EF8799FFEC2D
2 changed files with 4 additions and 4 deletions

View File

@ -72,7 +72,7 @@ done
highlight Setup started.
${PYTHON} gdextension/update_icons.py --silent
${PYTHON} gdextension/update_icon_entries.py --silent
highlight -- Icon declarations updated.
transfer="ln -s"

View File

@ -1,7 +1,7 @@
#!/usr/bin/python
"""
Usage: update_icons.py [--silent]
Update icon declarations in limboai.gdextension file.
Usage: update_icon_entries.py [--silent]
Update icon entries in limboai.gdextension file.
Options:
-s, --silent Don't print anything.
@ -79,7 +79,7 @@ def main():
if not silent:
print(content)
print("======= Icon declarations updated =======")
print("======= Icon entries updated =======")
if __name__ == "__main__":