mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-26 12:53:13 +00:00
6 lines
142 B
Fish
6 lines
142 B
Fish
|
function __fish_print_ninja_targets
|
||
|
if [ -f build.ninja ]
|
||
|
ninja -t targets 2> /dev/null | string replace -r ':.*' ''
|
||
|
end
|
||
|
end
|