You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Sometimes a configuration setting should only be included if the corresponding argument is included. With normal parameter substitution this should be able to be accomplished with '+'. For example:
Sometimes a configuration setting should only be included if the corresponding argument is included. With normal parameter substitution this should be able to be accomplished with '+'. For example:
foo=100
echo ${foo+setting} ${foo:-}
$ setting 100
echo ${bar+setting} ${bar:-}
$
What actually happens is envplate complains:
The text was updated successfully, but these errors were encountered: