launchpad-reviewers team mailing list archive
-
launchpad-reviewers team
-
Mailing list archive
-
Message #26682
[Merge] ~ilasc/turnip:add-l-flag-to-repack into turnip:master
Ioana Lasc has proposed merging ~ilasc/turnip:add-l-flag-to-repack into turnip:master.
Commit message:
Add -l to repack endpoint
Requested reviews:
Launchpad code reviewers (launchpad-reviewers)
For more details, see:
https://code.launchpad.net/~ilasc/turnip/+git/turnip/+merge/399797
This got removed as part of the "make the repack async" work, adding it back in.
--
Your team Launchpad code reviewers is requested to review the proposed merge of ~ilasc/turnip:add-l-flag-to-repack into turnip:master.
diff --git a/turnip/api/store.py b/turnip/api/store.py
index 8ea2240..d6c700a 100644
--- a/turnip/api/store.py
+++ b/turnip/api/store.py
@@ -482,7 +482,7 @@ def repack(repo_path):
ensure_config(repo_path)
- repack_args = ['git', 'repack', '-Adq']
+ repack_args = ['git', 'repack', '-Adql']
subprocess.check_call(
repack_args, cwd=repo_path,