10 lines
204 B
Fish
Executable file
10 lines
204 B
Fish
Executable file
#!/usr/bin/env fish
|
|
|
|
if type -q fisher
|
|
echo "fisher already installed"
|
|
else
|
|
echo "installing fisher"
|
|
curl -sL https://git.io/fisher | source && fisher install jorgebucaran/fisher
|
|
end
|
|
|
|
fisher update
|