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
{{ message }}
This repository was archived by the owner on Aug 22, 2023. It is now read-only.
When calling the python program using either "--help" or "/?", This will show an entire list of command switches that can be used in the installer to try and do things like run program in debugging mode and all that.
How it could be implemented
When calling the start program; the installer first checks to see if the user has specified any switches and there are none - the default settings are used which is run in GUI mode and let user decide from there, Otherwise if for example "--debug" switch is called, the debugging mode is enabled and so on.
Some sample switches i could provide here:
--help = Display the available cmdlines and quit,
--debug = Run installer in debugging mode,
--path:"$HOME/.minecraft" = Use a customized path for installing, default is the minecraft's home folder,
--version:1_19_3 = Use required minecraft version, default is latest.
Anything else?
This very likely won't be a thing for a while but can be utilized as a concept for the time being instead of being a full feature, but does come in handy when comparing this towards fabric's installer jar when java -jar fabric-installer.jar help is called in this case.