[DEVELOPMENT ENVIRONMENT]

* BUG: Do not remove the '.gambas' directory when compiling everything. 
  Just remove its contents, and keep a possible '.svn' directory inside.


git-svn-id: svn://localhost/gambas/trunk@6678 867c0c6c-44f3-4631-809d-bfa615b0a4ec
This commit is contained in:
Benoît Minisini 2014-11-24 16:07:32 +00:00
parent 76ebe74978
commit ca2bafe8fa

View file

@ -2420,7 +2420,10 @@ Public Sub DeleteCompiledFiles()
Dim sFile As String
Exec ["rm", "-rf", Project.Dir &/ ".gambas"] Wait
For Each sFile In Dir(Project.Dir &/ ".gambas")
If sFile Begins "." Then Continue
Try Kill Project.Dir &/ sFile
Next
If Exist(Project.Dir &/ ".lang") Then
For Each sFile In Dir(Project.Dir &/ ".lang", "*.pot")