mirror of
https://github.com/tuna/tunasync-scripts.git
synced 2025-04-20 12:42:50 +00:00
update tensorflow script
This commit is contained in:
parent
3a6167bf48
commit
41c93a8b87
@ -4,9 +4,6 @@ set -u
|
|||||||
set -e
|
set -e
|
||||||
set -o pipefail
|
set -o pipefail
|
||||||
|
|
||||||
_here=`dirname $(realpath $0)`
|
|
||||||
. ${_here}/helpers/helpers
|
|
||||||
|
|
||||||
XMLPARSE="${_here}/helpers/tf-xml-filelist.py"
|
XMLPARSE="${_here}/helpers/tf-xml-filelist.py"
|
||||||
|
|
||||||
TF_UPSTREAM_BASE_URL=${TUNASYNC_UPSTREAM_URL:-"https://storage.googleapis.com/tensorflow"}
|
TF_UPSTREAM_BASE_URL=${TUNASYNC_UPSTREAM_URL:-"https://storage.googleapis.com/tensorflow"}
|
||||||
@ -19,7 +16,7 @@ TF_UPSTREAM_BASE_URL=${TF_UPSTREAM_BASE_URL%/}
|
|||||||
failed=0
|
failed=0
|
||||||
wget -O - "${TF_UPSTREAM_BASE_URL}/" | ${XMLPARSE} | while read -a tokens; do
|
wget -O - "${TF_UPSTREAM_BASE_URL}/" | ${XMLPARSE} | while read -a tokens; do
|
||||||
filename=${tokens[0]}
|
filename=${tokens[0]}
|
||||||
filesize=${tokens[1]}
|
pkgsize=${tokens[1]}
|
||||||
|
|
||||||
# Notice: the filename starts with no leading '/'!
|
# Notice: the filename starts with no leading '/'!
|
||||||
pkgurl="${TF_UPSTREAM_BASE_URL}/${filename}"
|
pkgurl="${TF_UPSTREAM_BASE_URL}/${filename}"
|
||||||
@ -27,11 +24,22 @@ wget -O - "${TF_UPSTREAM_BASE_URL}/" | ${XMLPARSE} | while read -a tokens; do
|
|||||||
pkgdir=`dirname ${pkgdst}`
|
pkgdir=`dirname ${pkgdst}`
|
||||||
mkdir -p ${pkgdir}
|
mkdir -p ${pkgdir}
|
||||||
|
|
||||||
echo "downloading ${pkgurl}"
|
declare downloaded=false
|
||||||
|
if [[ -f ${pkgdst} ]]; then
|
||||||
|
local_size=`stat -c "%s" ${pkgdst}`
|
||||||
|
if [ ${local_size} -eq ${pkgsize} ]; then
|
||||||
|
downloaded=true
|
||||||
|
echo "Skipping ${pkgdst}, size ${pkgsize}"
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
[[ $downloaded == true ]] && continue
|
||||||
|
|
||||||
|
echo "downloading ${pkgurl} to ${pkgdst}"
|
||||||
if [[ -z ${DRY_RUN:-} ]]; then
|
if [[ -z ${DRY_RUN:-} ]]; then
|
||||||
check-and-download ${pkgurl} ${pkgdst} || failed=1
|
wget ${WGET_OPTIONS:-} -q -O ${pkgdst} ${pkgurl} || failed=1
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
|
||||||
exit $failed
|
exit $failed
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user