Create a new clap::ArgGroup that includes --force-update and --skip-update. --skip-update continues to do exactly that, skip the update check, while --force-update will not skip the update check no matter what (even if the versions were already checked that day).
--skip-update and --force-update should not be allowed at the same time.
Create a new
clap::ArgGroup
that includes--force-update
and--skip-update
.--skip-update
continues to do exactly that, skip the update check, while--force-update
will not skip the update check no matter what (even if the versions were already checked that day).--skip-update
and--force-update
should not be allowed at the same time.