mirror of
https://github.com/asdf-vm/asdf.git
synced 2024-11-15 01:28:17 -07:00
fix: remove find -print0
This commit is contained in:
parent
26d2c64477
commit
b9228a26de
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user