i use arch btw
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

update fastboot command

+7 -1
+7 -1
fish/.config/fish/functions/fastboot.fish
··· 1 1 function fastboot --wraps=fastboot.exe --description 'alias fastboot=fastboot.exe' 2 - fastboot.exe $argv 2 + if command -v fastboot >/dev/null 3 + command fastboot $argv 4 + else if command -v fastboot.exe >/dev/null 5 + fastboot.exe $argv 6 + else 7 + echo "fastboot not found" 8 + end 3 9 end