We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8ec9cbb commit 7ea24f3Copy full SHA for 7ea24f3
.travis.yml
@@ -109,7 +109,13 @@ matrix:
109
- env:
110
- NAME=astyle
111
install:
112
- - curl -v -LO --retry 20 http://downloads.sourceforge.net/project/astyle/astyle/astyle%203.1/astyle_3.1_linux.tar.gz;
+ - result=56;
113
+ counter=10;
114
+ while [[ ($result == 56) && (&counter != 0) ]]; do
115
+ curl -v -LO --retry 20 http://downloads.sourceforge.net/project/astyle/astyle/astyle%203.1/astyle_3.1_linux.tar.gz;
116
+ result=$?;
117
+ counter--;
118
+ done;
119
mkdir -p BUILD && tar xf astyle_3.1_linux.tar.gz -C BUILD;
120
pushd BUILD/astyle/build/gcc;
121
make;
0 commit comments