Subject: | Config::General doesn't properly interpolate variables with a minus sign. |
If I do something like:
foo=quux
<Baz Bar>
frobnitz=${foo}
</Baz>
Things work as expected...
However, my real configuration looked something like:
foo-bar=quux
<Baz Bar>
frobnitz=${foo-bar}
</Baz>
This doesn't work (foo-bar isn't interpolated)... apparently because of
the "-" in the variables names.