Просмотр исходного кода

feat(manifest): allow test verb without path argument

clanker 1 месяц назад
Родитель
Сommit
0a88ecec8d
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      src/cli/Manifest.vala

+ 1 - 1
src/cli/Manifest.vala

@@ -22,7 +22,7 @@ public static int manifest_main(string[] args) {
                 build_path = args[i];
                 build_path = args[i];
             }
             }
         }
         }
-    } else if(verb != "remove" && verb != "acquire" && verb != "install" && verb != "package") {
+    } else if(verb != "remove" && verb != "acquire" && verb != "install" && verb != "package" && verb != "test") {
         if(args.length < 3) {
         if(args.length < 3) {
             manifest_usage();
             manifest_usage();
             return 255;
             return 255;