Skip to content

Commit

Permalink
fix issue w/ args & update readme to reflect new arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
m1stadev committed Aug 27, 2020
1 parent 7cca27f commit e0eda49
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ optional arguments:
```

```
usage: ./restituere.py -d 'device' -i 'iOS Version' -f 'IPSW' [-v]
usage: ./restituere.py -d 'device' -i 'iOS version' -f 'IPSW' [-v]
Restituere - Restore custom IPSWs onto your 64bit iOS device!
Expand All @@ -48,6 +48,7 @@ optional arguments:
The version of your custom IPSW
-f IPSW, --ipsw IPSW Path to custom IPSW
-v, --verbose Print verbose output for debugging
-u, --update Keep data while restoring (EXPERIMENTAL)
```
- Inferius is used to create a custom IPSW, and Restituere is used for restoring a custom IPSW.
## FAQ
Expand Down
2 changes: 1 addition & 1 deletion restituere.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
parser.add_argument('-i', '--version', help='The version of your custom IPSW', nargs=1)
parser.add_argument('-f', '--ipsw', help='Path to custom IPSW', nargs=1)
parser.add_argument('-v', '--verbose', help='Print verbose output for debugging', action='store_true')
parser.add_argument('-u', '--verbose', help='Keep data while restoring (EXPERIMENTAL)')
parser.add_argument('-u', '--update', help='Keep data while restoring (EXPERIMENTAL)', action='store_true')
args = parser.parse_args()

if args.ipsw:
Expand Down

0 comments on commit e0eda49

Please sign in to comment.