Hello!
I’d like to have an ability to conditionally download source language. How can I do that?
I know there is a concept of dynamic config which kinda works, but it requires me to update all my scripts to pass default value for parameter.
If I add something like this to localazy.json
{
"download": {
"includeSourceLang": "${includeSourceLang}"
}
}
then I need to change all my existing commands to localazy download -p includeSourceLang:false
. And also I’m forced to pass this option to upload command too otherwise config file can’t be read
I’d like to keep the ability to use localazy download
and optionally to call localazy download -p includeSourceLang:true
when I want to update sourceLange.
Thank you in advance!