Skip to content

Commit

Permalink
Fix a mistake in jailbreak 3.x (fixes #536)
Browse files Browse the repository at this point in the history
  • Loading branch information
LukeZGD committed Jul 17, 2024
1 parent ca8d636 commit 8fe457a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions restore.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5602,9 +5602,9 @@ device_ramdisk_ios3exploit() {
* ) opt='n';;
esac
if [[ $opt != 'N' && $opt != 'n' ]]; then
untether="greenpois0n/${device_type}_${device_build}.tar"
untether="${device_type}_${device_build}.tar"
log "Sending $untether"
$scp -P $ssh_port $jelbrek/$untether [email protected]:/mnt1
$scp -P $ssh_port $jelbrek/greenpois0n/$untether [email protected]:/mnt1
log "Extracting $untether"
$ssh -p $ssh_port [email protected] "tar -xvf /mnt1/$untether -C /mnt1; rm /mnt1/$untether"
log "Mounting data partition"
Expand Down

1 comment on commit 8fe457a

@LukeZGD
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

actually #539 oops

Please sign in to comment.