mirror of
https://github.com/YunoHost/yunohost.git
synced 2024-09-03 20:06:10 +02:00
[enh] Use uppercase argument for building the env. var. name
This commit is contained in:
parent
03779fa7c3
commit
02358b9b1e
1 changed files with 1 additions and 1 deletions
|
@ -1523,7 +1523,7 @@ def _make_environment_dict(args_dict):
|
|||
"""
|
||||
env_dict = {}
|
||||
for arg_name, arg_value in args_dict.items():
|
||||
env_dict[ "YNH_APP_ARG_%s" % arg_name ] = arg_value
|
||||
env_dict[ "YNH_APP_ARG_%s" % arg_name.upper() ] = arg_value
|
||||
return env_dict
|
||||
|
||||
def is_true(arg):
|
||||
|
|
Loading…
Add table
Reference in a new issue