create-fleetbo-project 1.0.38 → 1.0.39
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -71,8 +71,8 @@ async function setupProject() {
|
|
|
71
71
|
try {
|
|
72
72
|
// Étape 1 : Télécharger la structure de base du projet
|
|
73
73
|
console.log(' [1/5] 📥 Initialisation de la structure du projet...');
|
|
74
|
-
// On
|
|
75
|
-
execSync(`git clone --depth 1 --branch ${branchName} ${repoGitUrl} "${projectName}"`);
|
|
74
|
+
// On redirige la sortie d'erreur (stderr) vers null pour masquer les messages de progression de Git
|
|
75
|
+
execSync(`git clone --depth 1 --branch ${branchName} ${repoGitUrl} "${projectName}" 2> /dev/null`);
|
|
76
76
|
|
|
77
77
|
// Étape 2 : Se déplacer dans le dossier du projet et nettoyer
|
|
78
78
|
console.log(' [2/5] ✅ Structure du projet initialisée. Configuration en cours...');
|