_toolchain: substitute '+' with 'X' in tool_env_var().
This commit is contained in:
parent
e974a31022
commit
abb2642256
|
@ -10,7 +10,7 @@ class ToolNotFound(Exception):
|
|||
|
||||
|
||||
def tool_env_var(name):
|
||||
return name.upper().replace("-", "_")
|
||||
return name.upper().replace("-", "_").replace("+", "X")
|
||||
|
||||
|
||||
def _get_tool(name):
|
||||
|
|
Loading…
Reference in a new issue