Exclude deps.json in package.sh
This commit is contained in:
parent
ab1c05023f
commit
98fc076c5b
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue