Skip to content

Commit

Permalink
Resolved Merge Conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
Stericson committed Dec 17, 2016
2 parents 343501b + c69dc82 commit ef504e0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/com/stericson/RootShell/RootShell.java
Original file line number Diff line number Diff line change
Expand Up @@ -413,11 +413,11 @@ public void commandOutput(int id, String line) {
}

/**
* @return <code>true</code> if BusyBox was found.
* @return <code>true</code> if BusyBox or Toybox was found.
*/
public static boolean isBusyboxAvailable()
{
return (findBinary("busybox", true)).size() > 0;
return (findBinary("busybox", true)).size() > 0 || (findBinary("toybox", true)).size() > 0;
}

/**
Expand Down

0 comments on commit ef504e0

Please sign in to comment.