Skip to content

Commit ef504e0

Browse files
committed
Resolved Merge Conflict
2 parents 343501b + c69dc82 commit ef504e0

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/main/java/com/stericson/RootShell/RootShell.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -413,11 +413,11 @@ public void commandOutput(int id, String line) {
413413
}
414414

415415
/**
416-
* @return <code>true</code> if BusyBox was found.
416+
* @return <code>true</code> if BusyBox or Toybox was found.
417417
*/
418418
public static boolean isBusyboxAvailable()
419419
{
420-
return (findBinary("busybox", true)).size() > 0;
420+
return (findBinary("busybox", true)).size() > 0 || (findBinary("toybox", true)).size() > 0;
421421
}
422422

423423
/**

0 commit comments

Comments
 (0)