Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion conf.d/android-sdk.fish
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,11 @@ for root in $ANDROID_HOME $ANDROID_SDK_ROOT $HOME/Android/Sdk $HOME/Library/Andr
end
# if we added at least one path, let's add them to the real PATH, set ANDROID_HOME and finish
if set -q paths[1]
set -gx PATH $PATH $paths
for path in $paths
if not contains -- $path $PATH
set -gx PATH $PATH $path
end
end
set -gx ANDROID_HOME $root
break
end
Expand Down