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
At the moment, the global flags --info, --debug, --pkg & --show-pkg all have to appear at the end of the command, but they should be able to appear at any point.
We should probably improve the way we do the parsing for the log level too
The text was updated successfully, but these errors were encountered:
In our mutli-module gradle build files, I wanted to be able to change the top-level default brjs command to be "brjs --debug" rather than just "brjs".
But this is not possible as brjs --debug says
"No such command --debug"
e.g.
brjs --debug build-app fxtrader
If the debug comes at the end, it works
brjs build-app fxtrader --debug
But I need to be able to set it at the start, as in my top-level gradle build file, I want all my subprojects to inherit the method to execute brjs and to all have common flags.
(The problem affects the --info flag too, and quite possibly other flags also)
At the moment, the global flags
--info
,--debug
,--pkg
&--show-pkg
all have to appear at the end of the command, but they should be able to appear at any point.We should probably improve the way we do the parsing for the log level too
The text was updated successfully, but these errors were encountered: