Skip to content

Commit

Permalink
fix(init_boot): do not extract if 'USE_ALT_DUMPER' is set to 'false'
Browse files Browse the repository at this point in the history
Change-Id: I0814fd7f8e80f7f061fc2361a363628b5d38222e
  • Loading branch information
AntoninoScordino committed Jan 4, 2025
1 parent d80390d commit 8e83508
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion extract_and_push.sh
Original file line number Diff line number Diff line change
Expand Up @@ -495,7 +495,7 @@ if [[ -f "${PWD}/vendor_kernel_boot.img" ]]; then
fi

# Extract 'init_boot.img'
if [[ -f "${PWD}/init_boot.img" ]] && [[ "${USE_ALT_DUMPER}" == "false" ]]; then
if [[ -f "${PWD}/init_boot.img" ]] && [[ "${USE_ALT_DUMPER}" == "true" ]]; then
# Set a variable for each path
## Image
IMAGE=${PWD}/init_boot.img
Expand Down

0 comments on commit 8e83508

Please sign in to comment.