Skip to content

Commit

Permalink
Update output
Browse files Browse the repository at this point in the history
  • Loading branch information
corbindavenport committed Sep 4, 2021
1 parent a9b350b commit 0c12074
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bin/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ Future removePlatformTools() async {
print(
'[WARN] Deleting $dir will delete Android System Tools (ADB, Fastboot, etc.).');
print(
'[WARN] This will also delete Nexus Tools if it is installed to that folder.');
'[WARN] This will also delete the Nexus Tools application.');
io.stdout.write('[WARN] Continue with removal? [Y/N] ');
var input = io.stdin.readLineSync();
if (input?.toLowerCase() != 'y') {
Expand All @@ -157,7 +157,7 @@ Future removePlatformTools() async {
// Proceed with deletion
await io.Directory(dir).delete(recursive: true);
print('[ OK ] Deleted directory at $dir.');
print('[ OK ] Nexus Tools can be re-installed at https://git.io/JBuTh.');
print('[INFO] Nexus Tools can be re-installed at https://git.io/JBuTh.');
} else {
print('[EROR] No installation found at $dir.');
}
Expand Down

0 comments on commit 0c12074

Please sign in to comment.