X-Git-Url: https://git.auder.net/?a=blobdiff_plain;f=client%2Fdownload_objects.sh;fp=client%2Fdownload_objects.sh;h=a59fe324faed52c1ea80122f520e5516eccec29b;hb=68ff39135865a7b68d36b9f0be2633f5296ab091;hp=0000000000000000000000000000000000000000;hpb=5668f4ddc47487f7b7316ac005ba5627285d73ec;p=vchess.git diff --git a/client/download_objects.sh b/client/download_objects.sh new file mode 100755 index 00000000..a59fe324 --- /dev/null +++ b/client/download_objects.sh @@ -0,0 +1,13 @@ +#!/bin/sh + +# Restore binary files (temporary fix - should use git-fat instead) +for color in "w" "b"; do + for piece in "b" "c" "d" "e" "f" "g" "h" "j" "k" "m" "n" "o" "p" "q" "r" "s"; do + rm public/images/pieces/Eightpieces/tmp_png/"$color$piece".png + wget -q -O public/images/pieces/Eightpieces/tmp_png/"$color$piece".png https://vchess.club/images/pieces/Eightpieces/tmp_png/"$color$piece".png + done +done +rm public/sounds/newgame.flac +wget -q -O public/sounds/newgame.flac https://vchess.club/sounds/newgame.flac +rm public/favicon.ico +wget -q -O public/favicon.ico https://vchess.club/favicon.ico