merge.py: Turn "too few nput files" error into a warning

There's not much wrong e.g. if in CI user requested just a single build
config, and it went thru the "merge" stage. Just generate "merged" report
for the single input config in this case, instead of erroring out. This
allows to avoid checking <2 condition in each and every CI job using
this tool.

Signed-off-by: Paul Sokolovsky <paul.sokolovsky@linaro.org>
diff --git a/coverage-tool/coverage-reporting/merge.py b/coverage-tool/coverage-reporting/merge.py
index 8dd6664..827d314 100755
--- a/coverage-tool/coverage-reporting/merge.py
+++ b/coverage-tool/coverage-reporting/merge.py
@@ -63,8 +63,7 @@
 options = parser.parse_args(sys.argv[1:])
 # At least two .info files are expected
 if len(options.add_file) < 2:
-    print('Error: too few input files.\n')
-    sys.exit(1)
+    print('Warning: too few input files.\n')
 # The same number of info and json files expected
 if options.json_file:
     if len(options.json_file) != len(options.add_file):