Browse Source

fix the chmod error when unpack .run files

tags/v1.5.1
盛楠 3 years ago
parent
commit
3de58133d1
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      scripts/update/ge_update.sh

+ 1
- 1
scripts/update/ge_update.sh View File

@@ -38,7 +38,7 @@ function extract_deps_so_community()
{ {
echo "begin to extract .run file ........." echo "begin to extract .run file ........."
chmod +x ./${DRIVER_RUN_NAME_C} chmod +x ./${DRIVER_RUN_NAME_C}
chmod +X ./${PACKAGE_NAME_C}
chmod +x ./${PACKAGE_NAME_C}
[ -n "${DEP_TMP_DIR}" ] && rm -rf "${DEP_TMP_DIR}" [ -n "${DEP_TMP_DIR}" ] && rm -rf "${DEP_TMP_DIR}"
./${DRIVER_RUN_NAME_C} --noexec --extract=${DEP_TMP_DIR}/driver ./${DRIVER_RUN_NAME_C} --noexec --extract=${DEP_TMP_DIR}/driver
./${PACKAGE_NAME_C} --noexec --extract=${DEP_TMP_DIR}/Packages_tmp ./${PACKAGE_NAME_C} --noexec --extract=${DEP_TMP_DIR}/Packages_tmp


Loading…
Cancel
Save