fix: ne pas écraser config.default.json

- Garder le config.default.json original du package
- Ne copier que vers config.json (pas config.default.json)
- Évite erreur TypeScript 'Property icon does not exist on type never'

Le type de social est inféré depuis config.default.json
This commit is contained in:
syoul
2025-12-09 15:12:46 +01:00
parent 2dd08c0d46
commit f149571673

View File

@@ -81,7 +81,6 @@ RUN rm -rf .techradar/data/radar && \
# Supprimer toute release de démo (2017-03-01, 2024-03-01, etc.) éventuellement recopiée depuis le package
find .techradar/data/radar -mindepth 1 -maxdepth 1 ! -name '2025-01-15' -exec rm -rf {} + && \
cp radar-business/config-business.json .techradar/data/config.json && \
cp radar-business/config-business.json .techradar/data/config.default.json && \
rm -rf .techradar/public && mkdir -p .techradar/public && \
cp -r public/* .techradar/public/ && \
cp public/team.html .techradar/public/team.html 2>/dev/null || true && \