Skip to content

Commit b46cb5f

Browse files
authored
Fix .DS_Store macOS file not ignored (#37)
The .gitignore file doesn't exclude `.DS_Store` files because it checks for a directory instead of a file. Removing the `/` at the end solves this issue.
1 parent 244a8da commit b46cb5f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ bin-release/
1717
.vscode/
1818
.idea/
1919
.local/
20-
.DS_*/
20+
.DS_*
2121

2222
# File extensions
2323
*.apk

0 commit comments

Comments
 (0)