From b9228a26de6a0337a7b59fb5252323d368a72a92 Mon Sep 17 00:00:00 2001 From: James Hegedus Date: Wed, 19 May 2021 19:43:16 +1000 Subject: [PATCH] fix: remove find -print0 --- lib/commands/command-plugin-update.bash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/commands/command-plugin-update.bash b/lib/commands/command-plugin-update.bash index e31048323..1e6f531f7 100644 --- a/lib/commands/command-plugin-update.bash +++ b/lib/commands/command-plugin-update.bash @@ -11,7 +11,7 @@ plugin_update_command() { if [ "$plugin_name" = "--all" ]; then if [ -d "$(asdf_data_dir)"/plugins ]; then - find "$(asdf_data_dir)"/plugins -mindepth 1 -maxdepth 1 -type d -print0 | while IFS= read -r dir; do + find "$(asdf_data_dir)"/plugins -mindepth 1 -maxdepth 1 -type d | while IFS= read -r dir; do update_plugin "$(basename "$dir")" "$dir" "$gitref" & done wait