-
Notifications
You must be signed in to change notification settings - Fork 486
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fixed minor typo #5
Conversation
@@ -362,7 +362,7 @@ public boolean deleteFileOrDirectory(String target, boolean remountAsRw) { | |||
} | |||
} else { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
change "else" to "if"
change
@@ -362,7 +362,7 @@ public boolean deleteFileOrDirectory(String target, boolean remountAsRw) { | |||
} | |||
} else { | |||
if (checkUtil("busybox") && hasUtil("rm", "busybox")) { | |||
RootTools.log("busybox cp command is available!"); | |||
RootTools.log("busybox rm command is available!"); | |||
|
|||
CommandCapture command = new CommandCapture(0, false, "busybox rm -rf " + target); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
change "false" to "true"
@@ -362,7 +362,7 @@ public boolean deleteFileOrDirectory(String target, boolean remountAsRw) { | |||
} | |||
} else { | |||
if (checkUtil("busybox") && hasUtil("rm", "busybox")) { | |||
RootTools.log("busybox cp command is available!"); | |||
RootTools.log("busybox rm command is available!"); | |||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
change "false" to "true"
No description provided.