Commit | Line | Data |
---|---|---|
68ff3913 BA |
1 | #!/bin/sh |
2 | ||
3 | # Restore binary files (temporary fix - should use git-fat instead) | |
4 | for color in "w" "b"; do | |
5 | for piece in "b" "c" "d" "e" "f" "g" "h" "j" "k" "m" "n" "o" "p" "q" "r" "s"; do | |
6 | rm public/images/pieces/Eightpieces/tmp_png/"$color$piece".png | |
7 | wget -q -O public/images/pieces/Eightpieces/tmp_png/"$color$piece".png https://vchess.club/images/pieces/Eightpieces/tmp_png/"$color$piece".png | |
8 | done | |
9 | done | |
10 | rm public/sounds/newgame.flac | |
11 | wget -q -O public/sounds/newgame.flac https://vchess.club/sounds/newgame.flac | |
12 | rm public/favicon.ico | |
13 | wget -q -O public/favicon.ico https://vchess.club/favicon.ico |