Merge "Remove --mirror for ostree pull"

This commit is contained in:
Zuul 2022-11-22 22:35:34 +00:00 committed by Gerrit Code Review
commit 530c308648
1 changed files with 1 additions and 1 deletions

View File

@ -166,7 +166,7 @@ def pull_ostree_from_remote():
Pull from remote ostree to sysroot ostree
"""
cmd = "ostree pull %s --depth=-1 --mirror" % constants.OSTREE_REMOTE
cmd = "ostree pull %s --depth=-1" % constants.OSTREE_REMOTE
try:
subprocess.run(cmd, shell=True, check=True, capture_output=True)