From 2546fee3d780fef75c5a4f76c00f48029f1df8c8 Mon Sep 17 00:00:00 2001 From: Justin Newberry Date: Tue, 2 Apr 2024 22:46:51 +0000 Subject: [PATCH] fix this --- system/updated/casync/common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/updated/casync/common.py b/system/updated/casync/common.py index 8a09c46b8c..b94978d8a4 100644 --- a/system/updated/casync/common.py +++ b/system/updated/casync/common.py @@ -48,7 +48,7 @@ def create_build_metadata_file(path: pathlib.Path, build_metadata: BuildMetadata def create_casync_release(target_dir: pathlib.Path, output_dir: pathlib.Path, caibx_name: str): tar_file = output_dir / f"{caibx_name}.tar" - run(["tar", "-cf", str(tar_file), target_dir]) + run(["tar", "-cf", str(tar_file), "-C", target_dir, "."]) caibx_file = output_dir / f"{caibx_name}.caibx" run(["casync", "make", *CASYNC_ARGS, caibx_file, str(tar_file)]) tar_file.unlink()