From b7ab55ce7315d820f26a34182e45b62cba4c7ffe Mon Sep 17 00:00:00 2001 From: be5invis Date: Fri, 23 Jul 2021 23:44:11 -0700 Subject: [PATCH] Fix path in TtcArchiveFile directive --- verdafile.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/verdafile.js b/verdafile.js index 4d7504a1a..c2a2a3f6c 100644 --- a/verdafile.js +++ b/verdafile.js @@ -510,8 +510,8 @@ const TtcArchiveFile = file.make( await cd(`${BUILD}/ttc-collect/${cgr}`).run( ["7z", "a"], ["-tzip", "-r", "-mx=9"], - `../../../../${out.full}`, - `./` + Path.relative(`${BUILD}/ttc-collect/${cgr}`, out.full), + `*.ttc` ); } );