diff options
author | Arun Prakash Jana <engineerarun@gmail.com> | 2019-12-06 18:57:53 +0530 |
---|---|---|
committer | Arun Prakash Jana <engineerarun@gmail.com> | 2019-12-06 18:57:53 +0530 |
commit | b65bc92e736038b47a6c8199b525c82c67eb8cd6 (patch) | |
tree | 2ac2efc5601f07d2e216c2ce4ef127e3dae6f4fc | |
parent | 70f3bd2e5376906d5e83725eddacfbc05c456c53 (diff) | |
download | nnn-b65bc92e736038b47a6c8199b525c82c67eb8cd6.tar.gz |
Fix build break
-rwxr-xr-x | plugins/getplugs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/plugins/getplugs b/plugins/getplugs index 3404488..ff40360 100755 --- a/plugins/getplugs +++ b/plugins/getplugs @@ -51,6 +51,8 @@ tar -zxf master.tar.gz cd nnn-master/plugins || exit 1 +# shellcheck disable=SC2044 +# We do not use obnoxious names for plugins for f in $(find . -maxdepth 1 \( ! -iname "." ! -iname "*.md" \)); do if [ -f ../../plugins/"$f" ]; then if [ "$(diff --brief "$f" ../../plugins/"$f")" ]; then |