mirror of
https://gitlab.com/Nanolx/NanoDroid
synced 2024-10-31 09:20:23 +00:00
CommonInstaller: catch unzip error 50 explicitely
This commit is contained in:
parent
c32e33ba1e
commit
6e8633853c
@ -1332,7 +1332,8 @@ nanodroid_install_lib () {
|
|||||||
case ${unzip_return} in
|
case ${unzip_return} in
|
||||||
0 ) echo " ${app} does have libs" ;;
|
0 ) echo " ${app} does have libs" ;;
|
||||||
11 ) echo " ${app} does not have any libs" ;;
|
11 ) echo " ${app} does not have any libs" ;;
|
||||||
* ) error " !! installing libs for ${app} failed [${unzip_return}]" ;;
|
50 ) error " not enough space available!" ;;
|
||||||
|
* ) error " installing libs for ${app} failed [${unzip_return}]" ;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
if [ -d ${TMP_LIBDIR}/lib ]; then
|
if [ -d ${TMP_LIBDIR}/lib ]; then
|
||||||
|
Loading…
Reference in New Issue
Block a user