Skip to content

Commit

Permalink
Minor improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
ale5000-git committed Aug 10, 2023
1 parent e835936 commit 49cd998
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions recovery-simulator/recovery.sh
Original file line number Diff line number Diff line change
Expand Up @@ -373,8 +373,9 @@ parse_recovery_output true "${recovery_logs_dir:?}/recovery-output-raw.log" "${r
parse_recovery_output false "${recovery_logs_dir:?}/recovery-raw.log" "${recovery_logs_dir:?}/recovery.log"

# List installed files
rm -f -- "${_android_sys:?}/framework/framework-res.apk"
rm -rf -- "${_android_sys:?}/bin" # It contains all symlinks of BusyBox, so remove it for now
rm -f -- "${_android_sys:?}/framework/framework-res.apk" || true
rm -rf -- "${_android_sys:?}/bin" || true # It contains all symlinks of BusyBox, so remove it for now
find "${BASE_SIMULATION_PATH}" -exec touch -c -t 202401010000.00 '{}' + || true
ls -A -R -F -l -n --color='never' -- "${BASE_SIMULATION_PATH}" 1> "${recovery_logs_dir:?}/installed-files.log" || true

# Final cleanup
Expand Down

0 comments on commit 49cd998

Please sign in to comment.