8 lines
129 B
Cheetah
8 lines
129 B
Cheetah
|
#!/usr/bin/env fish
|
||
|
|
||
|
{{ if lookPath "bat" -}}
|
||
|
bat cache --build
|
||
|
{{ else if lookPath "batcat" -}}
|
||
|
batcat cache --build
|
||
|
{{ end -}}
|