fixed: concat string on ENV being a list

This commit is contained in:
maix0 2024-12-06 14:46:41 +01:00
parent 5217991476
commit 3153c5b3b0

View file

@ -24,7 +24,7 @@ with builtins; let
toEnvValue = value: toEnvValue = value:
if isBool value then (if value then "true" else "false") 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 else value
; ;