Skip to content

Commit fa3631c

Browse files
committed
Enable use of list --recursive when notebooks are in a hidden directory.
refs gh-450
1 parent 9684baa commit fa3631c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

nb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5874,7 +5874,7 @@ _list() {
58745874
if ((_recursive))
58755875
then
58765876
{
5877-
find "${_list_path}" -type d -not -path '*/\.*' | sort
5877+
find "${_list_path}" -mindepth 1 \( -name '.*' -prune \) -o \( -type d -print \) | sort
58785878
} | {
58795879
local __folder_path=
58805880
while read -r __folder_path

0 commit comments

Comments
 (0)