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
Options that are clearly related to another should implicitly add the related option. Such as --force-render would implicitly mean that --render is passed as an option.
Use commands and options
Current options that are more akind to command (--render, --webserver) should be converted to commands with their specific options. Such as the command java -jar BlueMap-cli.jar --force-render would become java -jar BlueMap-cli.jar render --force, or java -jar BlueMap-cli.jar --webserver would become java -jar BlueMap-cli.jar webserver.
The text was updated successfully, but these errors were encountered:
What i did / Steps to reproduce
Running
java -jar BlueMap-cli.jar --force-render
.Expected result
A forced render is executed.
Actual result
Only the help text is outputted without any rendering done.
Context
BlueMap Version:
BlueMap-5.5-cli.jar
OS: Ubuntu 24.04
Proposals
Combined options
Options that are clearly related to another should implicitly add the related option. Such as
--force-render
would implicitly mean that--render
is passed as an option.Use commands and options
Current options that are more akind to command (
--render
,--webserver
) should be converted to commands with their specific options. Such as the commandjava -jar BlueMap-cli.jar --force-render
would becomejava -jar BlueMap-cli.jar render --force
, orjava -jar BlueMap-cli.jar --webserver
would becomejava -jar BlueMap-cli.jar webserver
.The text was updated successfully, but these errors were encountered: