Squirrel.Mac
Squirrel.Mac copied to clipboard
Remove `.DS_Store` files
I've noticed that released versions of Squirrel.framework
contain temporary .DS_Store
files in the following locations:
-
Squirrel.framework/.DS_Store
-
Squirrel.framework/Versions/.DS_Store
-
Squirrel.framework/Versions/A/.DS_Store
I was able to find that Squirrel.framework
contains these .DS_Store
files in various macOS apps by using the following command:
find "/Applications/" -name ".DS_Store" -type f -print
I think the build script can include some code to remove these unnecessary .DS_Store
files.
I want to look at solving this. I am wondering why the latest binary release has .DS_Store
files.