1
0
forked from baron/baron-sso

adminfront ci 스크립트 common 디렉터리 추가

This commit is contained in:
2026-05-12 15:10:09 +09:00
parent 45ce440569
commit ee41083b73

View File

@@ -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"