From a456b2aa58bf20c7a34f207ba0f050ac94df67b4 Mon Sep 17 00:00:00 2001 From: Yuval Date: Tue, 18 May 2021 22:38:34 +0300 Subject: [PATCH] Remove debug print --- src/ScanDir.jl | 1 - 1 file changed, 1 deletion(-) diff --git a/src/ScanDir.jl b/src/ScanDir.jl index f4ec525..b88c748 100644 --- a/src/ScanDir.jl +++ b/src/ScanDir.jl @@ -76,7 +76,6 @@ function scandirtree(root="."; topdown=true, follow_symlinks=false, onerror=thro return end isfilelike(e) = (!follow_symlinks && islink(e)) || !isdir(e) - @show root content = tryf(scandir, root) content === nothing && return dirs = DirEntry[]