We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0cc0038 commit 3082612Copy full SHA for 3082612
1 file changed
cli/filelister.cpp
@@ -235,7 +235,7 @@ bool FileLister::isDirectory(const std::string &path)
235
struct stat file_stat;
236
if (stat(path.c_str(), &file_stat) != -1)
237
return ((file_stat.st_mode & S_IFMT) == S_IFDIR);
238
-
+
239
return false;
240
}
241
@@ -244,7 +244,7 @@ bool FileLister::fileExists(const std::string &path)
244
245
246
return ((file_stat.st_mode & S_IFMT) == S_IFREG);
247
248
249
250
0 commit comments