This commit is contained in:
Serge Schneider
2016-05-05 19:43:33 +01:00
parent 19a1b94d2a
commit bdca3e3b48
14 changed files with 201 additions and 6 deletions

View File

@@ -1,7 +1,10 @@
#!/bin/bash -e
HASH=`wget https://api.github.com/repos/KenT2/python-games/git/refs/heads/master -qO -| grep \"sha\" | cut -f 2 -d ':' | cut -f 2 -d \"`
HASH_LOCAL=`cat files/python_games.hash`
if [ -f files/python_games.hash ]; then
HASH_LOCAL=`cat files/python_games.hash`
fi
if [ ! -e files/python_games.tar.gz ] || [ "$HASH" != "$HASH_LOCAL" ]; then
wget "https://github.com/KenT2/python-games/tarball/master" -O files/python_games.tar.gz