fix: amélioration logs pour vérifier copie team.html

- Vérification explicite que team.html existe dans public/ source
- Logs détaillés pour identifier où le fichier se trouve
- Vérification après copie dans .techradar/public/
This commit is contained in:
syoul
2025-12-06 22:31:24 +01:00
parent 66187011b6
commit 0d4f6f3929

View File

@@ -69,7 +69,10 @@ RUN mkdir -p .techradar/data && \
cp about.md .techradar/data/about.md 2>/dev/null || echo "about.md not found, skipping" && \ cp about.md .techradar/data/about.md 2>/dev/null || echo "about.md not found, skipping" && \
cp custom.css .techradar/src/styles/custom.css 2>/dev/null || echo "custom.css not found, skipping" && \ cp custom.css .techradar/src/styles/custom.css 2>/dev/null || echo "custom.css not found, skipping" && \
echo "Fichiers public copiés" && \ echo "Fichiers public copiés" && \
ls -la .techradar/public/ | grep -E "(team\.html|team-visualization)" || echo "Vérification fichiers team" echo "📁 Vérification des fichiers team dans .techradar/public/:" && \
ls -la .techradar/public/ | grep -E "(team\.html|team-visualization)" && echo "✅ Fichiers team trouvés" || (echo "⚠️ Fichiers team non trouvés dans .techradar/public/" && echo "📁 Contenu de public/ source:" && ls -la public/ | head -10) && \
echo "📁 Vérification que team.html existe dans public/ source:" && \
test -f public/team.html && echo "✅ public/team.html existe" || echo "❌ public/team.html n'existe pas"
# Créer la page Next.js /team et modifier Navigation # Créer la page Next.js /team et modifier Navigation
RUN chmod +x scripts/create-team-page.sh && \ RUN chmod +x scripts/create-team-page.sh && \