Accept empty file list in fsverity_manifest_generator

By accepting empty file list, it allows the build rule to generate the
build_manifest.pb unconditionally. Consequently, the consuming code in
composd won't need to handle the empty case (which requires parsing the
zip entry if it's done on the host side).

Bug: 256793394
Test: m
Change-Id: I69cdfb46bb0d54a13bd72a9755b53a594e044f06
diff --git a/fsverity/fsverity_manifest_generator.py b/fsverity/fsverity_manifest_generator.py
index 79be591..181758a 100644
--- a/fsverity/fsverity_manifest_generator.py
+++ b/fsverity/fsverity_manifest_generator.py
@@ -50,7 +50,7 @@
       required=True)
   p.add_argument(
       'inputs',
-      nargs='+',
+      nargs='*',
       help='input file for the build manifest')
   args = p.parse_args(sys.argv[1:])