mirror of
https://github.com/ethauvin/sdkman-for-fish.git
synced 2025-04-25 05:17:11 -07:00
9 lines
No EOL
230 B
Fish
9 lines
No EOL
230 B
Fish
# Guard: SDKMAN! needs to be installed
|
|
if not test -f "$__fish_sdkman_init"
|
|
exit 0
|
|
end
|
|
|
|
# Declare the sdk command for fish
|
|
function sdk -d "Manage SDKs"
|
|
__fish_sdkman_run_in_bash "source $__fish_sdkman_init && sdk $argv"
|
|
end |