fix: delete data.toml when clean
parent
955f5e28ec
commit
0a28aad68f
|
@ -275,7 +275,8 @@ func getUnusedDirs(apps map[string]App) (map[string]struct{}, error) {
|
|||
unusedDirs := make(map[string]struct{})
|
||||
for _, file := range files {
|
||||
// Ignore config file
|
||||
if file.Name() == configFileJSON {
|
||||
if file.Name() == configFileJSON ||
|
||||
file.Name() == configFileTOML {
|
||||
continue
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue