From b1a178990026b6f082ec863ff36c35108fa5c71f Mon Sep 17 00:00:00 2001 From: Wouter Born Date: Tue, 13 May 2025 10:49:42 +0200 Subject: [PATCH] Fix .DS_Store macOS file not ignored 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. --- .gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 3a8666c..7381138 100644 --- a/.gitignore +++ b/.gitignore @@ -17,7 +17,7 @@ bin-release/ .vscode/ .idea/ .local/ -.DS_*/ +.DS_* # File extensions *.apk