mirror of
https://github.com/edu4rdshl/gnome-shell.git
synced 2026-07-17 23:24:51 +00:00
fileUtils: Fix recursivelyDeleteDir
This commit is contained in:
parent
e4df00c77d
commit
ef49670ae4
1 changed files with 1 additions and 1 deletions
|
|
@ -38,7 +38,7 @@ function recursivelyDeleteDir(dir) {
|
|||
let child = dir.get_child(info.get_name());
|
||||
if (type == Gio.FileType.REGULAR)
|
||||
deleteGFile(child);
|
||||
else if (type == Gio.TypeType.DIRECTORY)
|
||||
else if (type == Gio.FileType.DIRECTORY)
|
||||
recursivelyDeleteDir(child);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue