Skip to content

Commit

Permalink
Minor change
Browse files Browse the repository at this point in the history
  • Loading branch information
ale5000-git committed Feb 27, 2025
1 parent 3cf2c3e commit a800eb5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions zip-content/inc/common-functions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -692,10 +692,10 @@ mount_partition_if_possible()
if test "${_partition_name:?}" != 'system' && test "${_partition_name:?}" != 'data'; then
if test -n "${SYS_PATH-}" && test ! -L "${SYS_PATH:?}/${_partition_name:?}" && test -d "${SYS_PATH:?}/${_partition_name:?}"; then # Example: /system_root/system/product
_skip_warnings='true'
ui_debug "Found ${_partition_name?} folder under: ${SYS_PATH?}"
ui_debug "Found ${_partition_name?} folder: ${SYS_PATH?}/${_partition_name?}"
elif test -n "${SYS_MOUNTPOINT-}" && test ! -L "${SYS_MOUNTPOINT:?}/${_partition_name:?}" && test -d "${SYS_MOUNTPOINT:?}/${_partition_name:?}"; then # Example: /system_root/odm
_skip_warnings='true'
ui_debug "Found ${_partition_name?} folder under: ${SYS_MOUNTPOINT?}"
ui_debug "Found ${_partition_name?} folder: ${SYS_MOUNTPOINT?}/${_partition_name?}"
fi
fi

Expand Down

0 comments on commit a800eb5

Please sign in to comment.