Merge pull request #853 from nandalopes/master

Fix find global options warning
This commit is contained in:
Trevor Brown 2021-01-21 08:59:29 -05:00 committed by GitHub
commit 78020067ec
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -14,7 +14,7 @@ plugin_update_command() {
local plugin_name
plugin_name=$(basename "$dir")
update_plugin "$plugin_name" "$dir" "$gitref" &
done < <(find "$(asdf_data_dir)"/plugins -type d -mindepth 1 -maxdepth 1)
done < <(find "$(asdf_data_dir)"/plugins -mindepth 1 -maxdepth 1 -type d)
wait
fi
else