From d0e7647effd7f7555bf15d2c2cd46b9a57fd0dd2 Mon Sep 17 00:00:00 2001 From: John Perez Date: Tue, 28 Mar 2023 12:01:50 -0500 Subject: [PATCH] refac(back): #1059 change cache compression - Change cachix compression level from 0 to default (2) Signed-off-by: John Perez --- src/cli/main/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cli/main/cli.py b/src/cli/main/cli.py index 11661c20..aa7be217 100644 --- a/src/cli/main/cli.py +++ b/src/cli/main/cli.py @@ -664,7 +664,7 @@ def cache_push(cache: List[Dict[str, str]], out: str) -> None: stdout=sys.stderr.fileno(), ) _run( - args=["cachix", "push", "-c", "0", config["name"], out], + args=["cachix", "push", config["name"], out], stderr=None, stdout=sys.stderr.fileno(), )