Permalink
Browse files

Fixes bug with linux make.file find command

  • Loading branch information...
1 parent b40a252 commit f09c7dc35a397be1b9b932c1e03092846eb179fd @mothur-westcott mothur-westcott committed Dec 20, 2016
Showing with 1 addition and 1 deletion.
  1. +1 −1 source/commands/makefilecommand.cpp
@@ -257,7 +257,7 @@ int MakeFileCommand::fillAccnosFile(string tempFile){
#if defined (__APPLE__) || (__MACH__) || (linux) || (__linux) || (__linux__) || (__unix__) || (__unix)
- findCommand = "find \"" + inputDir.substr(0, inputDir.length()-1) + "\" -maxdepth 1 -name \"*." + typeFile + " > " + tempFile;
+ findCommand = "find \"" + inputDir.substr(0, inputDir.length()-1) + "\" -maxdepth 1 -name \"*." + typeFile + "\" > " + tempFile;
if (m->debug) { m->mothurOut(findCommand + "\n"); }
system(findCommand.c_str());
#else

0 comments on commit f09c7dc

Please sign in to comment.