1
0
mirror of https://github.com/godotengine/godot synced 2024-07-08 22:20:44 +00:00

Fixed build with SCRIPT_AES256_ENCRYPTION_KEY set

This commit is contained in:
Marcus Brummer 2021-05-14 14:52:03 +02:00
parent 82c4d43726
commit 7e8e40a38e

View File

@ -18,7 +18,7 @@ if "SCRIPT_AES256_ENCRYPTION_KEY" in os.environ:
ec_valid = False
else:
txt = ""
for i in range(len(e) >> 1):
for i in range(len(key) >> 1):
if i > 0:
txt += ","
txts = "0x" + key[i * 2 : i * 2 + 2]