diff options
author | Fedja Beader <fedja@protonmail.ch> | 2025-03-23 18:06:42 +0000 |
---|---|---|
committer | Fedja Beader <fedja@protonmail.ch> | 2025-03-23 18:06:42 +0000 |
commit | 653bb2b16c495ca772980518f4c69b5b710b4353 (patch) | |
tree | 9bb10653c4e8d11460382629ac762c16245bef03 | |
parent | a97ec5e9eb9f4387e7273a2063b9e037939a93d1 (diff) | |
download | clientdata-653bb2b16c495ca772980518f4c69b5b710b4353.tar.gz clientdata-653bb2b16c495ca772980518f4c69b5b710b4353.tar.bz2 clientdata-653bb2b16c495ca772980518f4c69b5b710b4353.tar.xz clientdata-653bb2b16c495ca772980518f4c69b5b710b4353.zip |
Remove all that is cached (in libdownload)
TODO: figure out what's caching things, it's not deps or cache setting in job def.
**** ml/clientdata!186
-rwxr-xr-x | .tools/downloadlib.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.tools/downloadlib.sh b/.tools/downloadlib.sh index dd169450..ce034c89 100755 --- a/.tools/downloadlib.sh +++ b/.tools/downloadlib.sh @@ -3,9 +3,9 @@ export zipname="lib.zip" export libname="$1_$2" +rm -rf libdownload mkdir libdownload cd libdownload -rm "${zipname}" wget --retry-connrefused --retry-on-host-error --tries=10 --waitretry=5 \ -O "$zipname" \ |