We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cf834c9 commit e47441dCopy full SHA for e47441d
contrib/completion/bash/sdk
@@ -32,9 +32,10 @@ __sdkman_complete_command() {
32
done
33
;;
34
install|list)
35
+ curl --silent "${SDKMAN_CANDIDATES_API}/candidates/all" | \
36
while IFS= read -d, -r candidate; do
37
candidates+=($candidate)
- done < <(curl --silent "${SDKMAN_CANDIDATES_API}/candidates/all")
38
+ done
39
40
env)
41
candidates=("init install clear")
0 commit comments