Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines
(2 edits)

had the same issue, the .DS_Store is an autogenerated macOS file, iirc it doesn’t display with ‘command + shift + dot’. here’s my workaround that doesn’t touch the engine & seems to work both with the dev build & the dist build:

in your terminal, run:

find . -name ".DS_Store" -type f -delete

i’m not a programmer but what this command does is:

find searching function

. (. stands for current directory, .. would take you to your parent directory)

-name match by filename (filename is “.DS_Store”)

".DS_Store" string value that -name uses

-type talks to find, so -type f will say “please look for f

f stands for file, you can use type *d* to search for directories instead of files

-delete tells find to delete things matching the earlier criteria . -name ".DS_store" -type f

(+1)

thanks for the diligent work! i've uploaded a new version that *should* take care of this, but i can't reproduce it on my non-macOS machine, sadly, so i'm not certain if it works. let me know if it does!

it worked perfectly, thanks so much! ◡̈

(+1)

That worked, thanks!