jsx/rebar.config.script
alisdair sullivan 6089de017c switch to feature detection rather than trying to figure out from
compiler version/release whether maps should be supported
2014-04-17 13:40:28 +00:00

8 lines
No EOL
191 B
Text

case os:getenv("JSX_NOMAPS") of
false ->
try file:script("config/maps") of {ok, true} ->
[{d, release_supports_maps}] ++ CONFIG
catch _:_ -> CONFIG
end;
_ -> CONFIG
end.