diff options
| -rw-r--r-- | box64-bundle-x86-libs.sh | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/box64-bundle-x86-libs.sh b/box64-bundle-x86-libs.sh index 752eda95..8c6f0eaf 100644 --- a/box64-bundle-x86-libs.sh +++ b/box64-bundle-x86-libs.sh @@ -101,6 +101,13 @@ for lib in libc.so libpthread.so librt.so libGL.so libGL.so libX11.so \ do find "${dir_tmp_local}" -name "${lib}"* -delete done +if find "${dir_tmp_local}"/bundle-libs/ -type l ! -exec test -e {} \; -print | grep bundle-libs + then echo "Broken symlinks found." + cd - + echo rm -r -f "${dir_tmp_local}" + exit 1 +fi + mv "${dir_tmp_local}"/*.deb "${dir_tmp_local}/bundle-pkgs/" mv "${dir_tmp_local}"/*.eopkg "${dir_tmp_local}/bundle-pkgs/" mv "${dir_tmp_local}"/*.rpm "${dir_tmp_local}/bundle-pkgs/" |