From 074e68f9b0460493d1becf654873c579b47424b2 Mon Sep 17 00:00:00 2001 From: comp500 Date: Sun, 12 Feb 2023 22:27:50 +0000 Subject: [PATCH] Exclude .DS_Store folder in default packwizignore --- core/index.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/core/index.go b/core/index.go index 347107e..ae37db3 100644 --- a/core/index.go +++ b/core/index.go @@ -170,6 +170,9 @@ var ignoreDefaults = []string{ ".gitattributes", ".gitignore", + // Exclude macOS metadata + ".DS_Store", + // Exclude exported CurseForge zip files "/*.zip",