Browse Source

feat(manifest): allow test verb without path argument

clanker 1 tháng trước cách đây
mục cha
commit
0a88ecec8d
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  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];
             }
         }
-    } 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) {
             manifest_usage();
             return 255;