Skip to content

Commit

Permalink
style(lint): fix coding style
Browse files Browse the repository at this point in the history
  • Loading branch information
NeoHsu committed May 26, 2021
1 parent 2874298 commit b4886af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/utils.bash
Expand Up @@ -389,7 +389,7 @@ repository_needs_update() {
local update_plugins_repository_duration
update_plugins_repository_duration="$(get_asdf_config_value "update_plugins_repository_duration")"
local find_result
find_result=$(find "$update_file_dir" -name "$update_file_name" -type f -mmin +${update_plugins_repository_duration:-1440} -print)
find_result=$(find "$update_file_dir" -name "$update_file_name" -type f -mmin +"${update_plugins_repository_duration:-1440}" -print)
[ -n "$find_result" ]
}

Expand Down

0 comments on commit b4886af

Please sign in to comment.