fixed: concat string on ENV being a list
This commit is contained in:
parent
5217991476
commit
3153c5b3b0
1 changed files with 1 additions and 1 deletions
|
|
@ -24,7 +24,7 @@ with builtins; let
|
|||
|
||||
toEnvValue = value:
|
||||
if isBool value then (if value then "true" else "false")
|
||||
else if isList value then "[${concatStringSep ";" value}]"
|
||||
else if isList value then "[${concatStringsSep ";" value}]"
|
||||
else value
|
||||
;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue