This commit is contained in:
parent
3d9c50cb8e
commit
08a7524ee0
|
@ -625,6 +625,11 @@ func listFiles(dirname string) []string {
|
|||
|
||||
dirs = append(dirs, name)
|
||||
} else {
|
||||
// exclude the .DS_Store directory on Mac OS X
|
||||
if ".DS_Store" == fio.Name() {
|
||||
continue
|
||||
}
|
||||
|
||||
files = append(files, name)
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue