From ee41083b732560fafbccbe5fdb63a1d120ec0d77 Mon Sep 17 00:00:00 2001 From: kyy Date: Tue, 12 May 2026 15:10:09 +0900 Subject: [PATCH] =?UTF-8?q?adminfront=20ci=20=EC=8A=A4=ED=81=AC=EB=A6=BD?= =?UTF-8?q?=ED=8A=B8=20common=20=EB=94=94=EB=A0=89=ED=84=B0=EB=A6=AC=20?= =?UTF-8?q?=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- scripts/run_adminfront_ci_tests.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/scripts/run_adminfront_ci_tests.sh b/scripts/run_adminfront_ci_tests.sh index 7c5d3f03..6fd90287 100755 --- a/scripts/run_adminfront_ci_tests.sh +++ b/scripts/run_adminfront_ci_tests.sh @@ -27,8 +27,12 @@ if command -v rsync >/dev/null 2>&1; then --exclude 'playwright-report' \ --exclude 'test-results' \ "$repo_root/adminfront/" "$tmp_dir/adminfront/" + rsync -rlptD --delete \ + --exclude 'node_modules' \ + "$repo_root/common/" "$tmp_dir/common/" else cp -R "$repo_root/adminfront" "$tmp_dir/adminfront" + cp -R "$repo_root/common" "$tmp_dir/common" rm -rf "$tmp_dir/adminfront/node_modules" \ "$tmp_dir/adminfront/playwright-report" \ "$tmp_dir/adminfront/test-results"