bytebeat_compiler.py: don't concatenate env. variable
This commit is contained in:
parent
08a7c255db
commit
a192380d10
@ -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:
|
||||
|
Loading…
Reference in New Issue
Block a user