[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:
parent
76ebe74978
commit
ca2bafe8fa
1 changed files with 4 additions and 1 deletions
|
@ -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")
|
||||
|
|
Loading…
Reference in a new issue