remove unknown args and added tests

This commit is contained in:
Abhishek
2016-10-21 12:08:09 +05:30
parent d9899b788d
commit 1c3092150f
2 changed files with 10 additions and 0 deletions
+4
View File
@@ -74,6 +74,10 @@ func validateFlags(c *cli.Context, opt *kobject.ConvertOptions) {
if len(dabFile) > 0 && len(opt.InputFile) > 0 && opt.InputFile != DefaultComposeFile {
logrus.Fatalf("Error: 'compose' file and 'dab' file cannot be specified at the same time")
}
if len(c.Args()) != 0 {
logrus.Fatal("Unknown Argument(s): ", strings.Join(c.Args(), ","))
}
}
func validateControllers(opt *kobject.ConvertOptions) {