diff options
author | Michał Górny <mgorny@gentoo.org> | 2022-09-13 17:49:53 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2022-09-13 17:49:53 +0200 |
commit | 597f43d228dc3cee05e4004688293721a08d25bd (patch) | |
tree | 07219bd04282fcfaa51d81fbe3207205b606f74f | |
parent | e53475a841fbe493781444b213dfd9668f4ea206 (diff) | |
download | gemato-597f43d228dc3cee05e4004688293721a08d25bd.tar.gz |
cli: Print top-level Manifest path
Closes: https://github.com/projg2/gemato/issues/20
Signed-off-by: Michał Górny <mgorny@gentoo.org>
-rw-r--r-- | gemato/cli.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gemato/cli.py b/gemato/cli.py index 14b153a..afbddda 100644 --- a/gemato/cli.py +++ b/gemato/cli.py @@ -1,6 +1,6 @@ # gemato: CLI routines # vim:fileencoding=utf-8 -# (c) 2017-2020 Michał Górny +# (c) 2017-2022 Michał Górny # Licensed under the terms of 2-clause BSD license from __future__ import print_function @@ -236,6 +236,8 @@ class VerifyCommand(BaseManifestLoaderMixin, VerifyingOpenPGPMixin, logging.error(f'Top-level Manifest not found in {p}') return 1 + logging.info(f"Using top-level Manifest: {tlm}") + start = timeit.default_timer() m = ManifestRecursiveLoader(tlm, **self.init_kwargs) if self.require_signed_manifest and not m.openpgp_signed: |