15 lines
449 B
PowerShell
Executable File
15 lines
449 B
PowerShell
Executable File
# Script pour nettoyer les applications de démonstration
|
|
Write-Host "Nettoyage des applications de démonstration..."
|
|
|
|
$appsPath = "app/(main)/apps"
|
|
|
|
if (Test-Path $appsPath) {
|
|
Write-Host "Suppression du dossier $appsPath..."
|
|
Remove-Item -Recurse -Force $appsPath -ErrorAction SilentlyContinue
|
|
Write-Host "Dossier supprimé avec succès."
|
|
} else {
|
|
Write-Host "Le dossier $appsPath n'existe pas."
|
|
}
|
|
|
|
Write-Host "Nettoyage terminé."
|