1
0

bytebeat_compiler.py: don't concatenate env. variable

This commit is contained in:
Intel A80486DX2-66 2024-01-02 18:12:34 +03:00
parent 08a7c255db
commit a192380d10
Signed by: 80486DX2-66
GPG Key ID: 83631EF27054609B

View File

@ -41,7 +41,7 @@ DEFAULT_PARAMETERS = {
def fetch(name: str):
res = DEFAULT_PARAMETERS[name]
if from_env := environ.get(name):
res += from_env
res = from_env
return res
def read_file(path: str) -> str: