From c1bfc4edd9d8006cc2e29be5731cfd929f27637d Mon Sep 17 00:00:00 2001 From: Weicao-CatilGrass <1992414357@qq.com> Date: Tue, 16 Dec 2025 09:25:23 +0800 Subject: Skip missing files in sheet align operation When aligning sheet files, skip any source files that don't exist instead of failing the entire operation. --- src/bin/jv.rs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/bin/jv.rs b/src/bin/jv.rs index 0199c0b..a9f8033 100644 --- a/src/bin/jv.rs +++ b/src/bin/jv.rs @@ -2630,6 +2630,11 @@ async fn jv_sheet_align(args: SheetAlignArgs) { }; let from = local_dir.join(&path); + + if !from.exists() { + continue; + } + let to = local_dir .join(CLIENT_FOLDER_WORKSPACE_ROOT_NAME) .join(".temp") -- cgit