From 98fc076c5bf95c782d4038723f163ae73f35a2f7 Mon Sep 17 00:00:00 2001 From: Morilli <35152647+Morilli@users.noreply.github.com> Date: Sun, 5 May 2024 14:38:55 +0200 Subject: [PATCH] Exclude deps.json in package.sh --- Dist/Package.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dist/Package.sh b/Dist/Package.sh index 97d75e935d..df065aee4d 100755 --- a/Dist/Package.sh +++ b/Dist/Package.sh @@ -5,7 +5,7 @@ cd "$(dirname "$0")/.." rm -fr "$targetDir" && mkdir -p "$targetDir" find "output" -type f \( -wholename "output/EmuHawk.exe" -o -wholename "output/DiscoHawk.exe" -o -wholename "output/*.config" -o -wholename "output/defctrl.json" -o -wholename "output/EmuHawkMono.sh" -o -wholename "output/dll/*" -o -wholename "output/Shaders/*" -o -wholename "output/gamedb/*" -o -wholename "output/Tools/*" -o -wholename "output/NES/Palettes/*" -o -wholename "output/Lua/*" -o -wholename "output/Gameboy/Palettes/*" -o -wholename "output/overlay/*" \) \ -not -name "*.pdb" -not -name "*.lib" -not -name "*.pgd" -not -name "*.ipdb" -not -name "*.iobj" -not -name "*.exp" -not -name "*.ilk" \ - -not -wholename "output/dll/*.xml" \ + -not -wholename "output/dll/*.xml" -not -wholename "output/dll/*.deps.json" \ -exec install -D -m644 "{}" "packaged_{}" \; cd "$targetDir" if [ "$1" = "windows-x64" ]; then