adding new list_pages tool

This commit is contained in:
mcguirepr89
2022-01-25 14:42:47 -05:00
parent 77c61f9a50
commit 087c3f6fb1
3 changed files with 56 additions and 6 deletions
+1 -1
View File
@@ -89,7 +89,7 @@ function printFoldersRecursive($dir) {
if (is_dir($dir)){
if ($dh = opendir($dir)){
while (($file = readdir($dh)) !== false){
if($file != '.' && $file != '..') {
if($file != '.' && $file != '..' && $file != 'birdnet' && $file != '.git') {
$allfiles[] = $file;
}
}