Skip to content

Commit d28c690

Browse files
committed
downloadlibs [2.8.0 ~ 2.8.1] valid bool to int
1 parent fcdf8be commit d28c690

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

scripts/dev/download_libs.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ LEGACY=0
88
SILENT_ARGS=""
99
NO_SSL=""
1010
BLEEDING_EDGE=0
11-
DL_VERSION=2.8.0
11+
DL_VERSION=2.8.1
1212
GCC_VERSION=0
1313
TAG=""
1414

@@ -351,15 +351,15 @@ cd download
351351
download "${PKGS[@]}"
352352

353353
cd ../ # back to libs
354-
VALID=true
354+
VALID=1
355355
for PKG in $PKGS; do
356356
echo " Validate libraries [${PLATFORM}] from [$PKG]"
357357
if [ ! -f "download/$PKG" ]; then
358358
echo "Error: File 'download/$PKG' does not exist!" >&2
359-
VALID=false
359+
VALID=0
360360
fi
361361
done
362-
if [ $VALID -eq false ]; then
362+
if [ $VALID -eq 0 ]; then
363363
exit 71
364364
fi
365365

0 commit comments

Comments
 (0)