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 fcdf8be commit d28c690Copy full SHA for d28c690
scripts/dev/download_libs.sh
@@ -8,7 +8,7 @@ LEGACY=0
8
SILENT_ARGS=""
9
NO_SSL=""
10
BLEEDING_EDGE=0
11
-DL_VERSION=2.8.0
+DL_VERSION=2.8.1
12
GCC_VERSION=0
13
TAG=""
14
@@ -351,15 +351,15 @@ cd download
351
download "${PKGS[@]}"
352
353
cd ../ # back to libs
354
-VALID=true
+VALID=1
355
for PKG in $PKGS; do
356
echo " Validate libraries [${PLATFORM}] from [$PKG]"
357
if [ ! -f "download/$PKG" ]; then
358
echo "Error: File 'download/$PKG' does not exist!" >&2
359
- VALID=false
+ VALID=0
360
fi
361
done
362
-if [ $VALID -eq false ]; then
+if [ $VALID -eq 0 ]; then
363
exit 71
364
365
0 commit comments