File tree Expand file tree Collapse file tree 2 files changed +14
-2
lines changed
Expand file tree Collapse file tree 2 files changed +14
-2
lines changed Original file line number Diff line number Diff line change @@ -204,6 +204,6 @@ Content-Security-Policy:
204204
205205---
206206
207- ** Last Updated** : June 29 , 2025
207+ ** Last Updated** : June 30 , 2025
208208** Security Level** : Enhanced
209- ** Next Review** : July 29 , 2025
209+ ** Next Review** : July 30 , 2025
Original file line number Diff line number Diff line change 55
66echo " 🎯 Post-build cleanup..."
77
8+ # Copy frontend build output to root build directory
9+ if [ -d " frontend/dist" ]; then
10+ echo " 📦 Copying frontend build to root build directory..."
11+ # Ensure build directory exists
12+ mkdir -p build
13+ # Copy all files from frontend/dist to build, preserving existing files
14+ cp -r frontend/dist/* build/ 2> /dev/null || true
15+ echo " ✅ Frontend build copied successfully"
16+ else
17+ echo " ⚠️ Warning: frontend/dist directory not found"
18+ fi
19+
820# Remove build lock files
921rm -f .building
1022rm -f frontend/.building 2> /dev/null || true
You can’t perform that action at this time.
0 commit comments