Skip to content

Commit

Permalink
Separators fix
Browse files Browse the repository at this point in the history
  • Loading branch information
altvnv committed Mar 16, 2018
1 parent 6b0362d commit 1853c45
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ public boolean checkForBinary(String filename) {

for (String path : pathsArray) {
String completePath = path + filename;
File f = new File(completePath);
File f = new File(path, filename);
boolean fileExists = f.exists();
if (fileExists) {
QLog.v(completePath + " binary detected!");
Expand Down

0 comments on commit 1853c45

Please sign in to comment.