use kebab case instead of camelcase for no cli options

This commit is contained in:
Sebastian McKenzie 2015-03-30 06:43:23 +11:00
parent 46d991e3e9
commit 862bd6d92a

View File

@ -19,7 +19,7 @@ each(File.options, function (option, key) {
}
if (option.type === "boolean" && option.default === true) {
arg = "no-" + key;
arg = "no-" + arg;
}
arg = "--" + arg;