Resolve RLBT#0000132 discinfo and treeinfo

This commit is contained in:
Louis Abel 2022-06-30 01:45:08 -07:00
parent 5a02fe5a25
commit 49b001e31d
Signed by: label
GPG Key ID: B37E62D143879B36
1 changed files with 2 additions and 0 deletions

View File

@ -22,6 +22,7 @@ parser.add_argument('--dry-run', action='store_true')
parser.add_argument('--full-run', action='store_true')
parser.add_argument('--no-fail', action='store_true')
parser.add_argument('--refresh-extra-files', action='store_true')
parser.add_argument('--refresh-treeinfo', action='store_true')
# I am aware this is confusing, I want podman to be the default option
parser.add_argument('--simple', action='store_false')
parser.add_argument('--logger', type=str)
@ -52,6 +53,7 @@ a = RepoSync(
nofail=results.no_fail,
logger=results.logger,
refresh_extra_files=results.refresh_extra_files,
refresh_treeinfo=results.refresh_treeinfo,
)
def run():