From 70f3bd2e5376906d5e83725eddacfbc05c456c53 Mon Sep 17 00:00:00 2001 From: Arun Prakash Jana Date: Fri, 6 Dec 2019 08:50:23 +0530 Subject: [PATCH] Fix #398 --- plugins/getplugs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/plugins/getplugs b/plugins/getplugs index 3c8d7aa7..3404488f 100755 --- a/plugins/getplugs +++ b/plugins/getplugs @@ -50,7 +50,8 @@ curl -Ls -O https://github.com/jarun/nnn/archive/master.tar.gz tar -zxf master.tar.gz cd nnn-master/plugins || exit 1 -for f in *; do + +for f in $(find . -maxdepth 1 \( ! -iname "." ! -iname "*.md" \)); do if [ -f ../../plugins/"$f" ]; then if [ "$(diff --brief "$f" ../../plugins/"$f")" ]; then prompt "$f" @@ -63,4 +64,4 @@ done cd ../.. || exit 1 $sucmd mv -vf nnn-master/misc/nlaunch/nlaunch /usr/local/bin/ -rm -rf nnn-master/ master.tar.gz "$PLUGIN_DIR"/README.md +rm -rf nnn-master/ master.tar.gz