mirror of
https://github.com/tihmstar/futurerestore.git
synced 2025-07-05 15:30:33 +00:00
Clear up deprecation confusion (#105)
This commit is contained in:
parent
b7710d47d5
commit
652e1fada7
|
@ -192,19 +192,19 @@ int main_r(int argc, const char * argv[]) {
|
||||||
apticketPaths.push_back(optarg);
|
apticketPaths.push_back(optarg);
|
||||||
break;
|
break;
|
||||||
case 'b': // long option: "baseband"; can be called as short option
|
case 'b': // long option: "baseband"; can be called as short option
|
||||||
retassure(manual, "--baseband is Deprecated!");
|
retassure(manual, "--baseband is Deprecated! Please switch to --custom-latest or --custom-latest-beta.");
|
||||||
basebandPath = optarg;
|
basebandPath = optarg;
|
||||||
break;
|
break;
|
||||||
case 'p': // long option: "baseband-manifest"; can be called as short option
|
case 'p': // long option: "baseband-manifest"; can be called as short option
|
||||||
retassure(manual, "--baseband-manifest is Deprecated!");
|
retassure(manual, "--baseband-manifest is Deprecated! Please switch to --custom-latest or --custom-latest-beta.");
|
||||||
basebandManifestPath = optarg;
|
basebandManifestPath = optarg;
|
||||||
break;
|
break;
|
||||||
case 's': // long option: "sep"; can be called as short option
|
case 's': // long option: "sep"; can be called as short option
|
||||||
retassure(manual, "--sep is Deprecated!");
|
retassure(manual, "--sep is Deprecated! Please switch to --custom-latest or --custom-latest-beta.");
|
||||||
sepPath = optarg;
|
sepPath = optarg;
|
||||||
break;
|
break;
|
||||||
case 'm': // long option: "sep-manifest"; can be called as short option
|
case 'm': // long option: "sep-manifest"; can be called as short option
|
||||||
retassure(manual, "--sep-manifest is Deprecated!");
|
retassure(manual, "--sep-manifest is Deprecated! Please switch to --custom-latest or --custom-latest-beta.");
|
||||||
sepManifestPath = optarg;
|
sepManifestPath = optarg;
|
||||||
break;
|
break;
|
||||||
case 'w': // long option: "wait"; can be called as short option
|
case 'w': // long option: "wait"; can be called as short option
|
||||||
|
|
Loading…
Reference in a new issue