-
Notifications
You must be signed in to change notification settings - Fork 51
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Common options / parseCommon fix #66
Conversation
@@ -126,6 +129,7 @@ const upgradeCommand = program | |||
} | |||
options = parseCommon(options) | |||
options.calendars = options.calendar | |||
options = parseCommon(options) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: I think this is not needed
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Indeed not needed, too much copy-paste :)
re 98fbd12 : The whitelist stuff is not needed for |
I'd like to add |
Cool! It's there. All good, thanks for the review @lvaccaro. |
ack 3eb2f4d |
The "common" options
verbose
,whitelist
andno-default-whitelist
were ignored. I changed the commander stuff so they are now taken into account.Will probably solve issue #42 also.