This commit is contained in:
Arun Prakash Jana 2019-12-06 08:50:23 +05:30
parent 7f2bf343f8
commit 70f3bd2e53
No known key found for this signature in database
GPG Key ID: A75979F35C080412
1 changed files with 3 additions and 2 deletions

View File

@ -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