mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-12-27 10:26:19 +03:00
Merge pull request #4534 from radarhere/retry
Retry on apt-get update problems
This commit is contained in:
commit
3052874e80
|
@ -1,8 +1,22 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
|
aptget_update()
|
||||||
|
{
|
||||||
|
if [ ! -z $1 ]; then
|
||||||
|
echo ""
|
||||||
|
echo "Retrying apt-get update..."
|
||||||
|
echo ""
|
||||||
|
fi
|
||||||
|
output=`sudo apt-get update 2>&1`
|
||||||
|
echo "$output"
|
||||||
|
if [[ $output == *[WE]:\ * ]]; then
|
||||||
|
return 1
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
aptget_update || aptget_update retry || aptget_update retry
|
||||||
|
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
sudo apt-get update
|
|
||||||
sudo apt-get -qq install libfreetype6-dev liblcms2-dev python3-tk\
|
sudo apt-get -qq install libfreetype6-dev liblcms2-dev python3-tk\
|
||||||
ghostscript libffi-dev libjpeg-turbo-progs libopenjp2-7-dev\
|
ghostscript libffi-dev libjpeg-turbo-progs libopenjp2-7-dev\
|
||||||
cmake imagemagick libharfbuzz-dev libfribidi-dev
|
cmake imagemagick libharfbuzz-dev libfribidi-dev
|
||||||
|
|
Loading…
Reference in New Issue
Block a user