Commit 3620d706 authored by Justin Hileman's avatar Justin Hileman Committed by Bruno Pinto

[bobthefish] always use `command hg`

parent 340a2935
...@@ -85,8 +85,8 @@ function __bobthefish_git_branch -d 'Get the current git branch (or commitish)' ...@@ -85,8 +85,8 @@ function __bobthefish_git_branch -d 'Get the current git branch (or commitish)'
end end
function __bobthefish_hg_branch -d 'Get the current hg branch' function __bobthefish_hg_branch -d 'Get the current hg branch'
set -l branch (hg branch ^/dev/null) set -l branch (command hg branch ^/dev/null)
set -l book " @ "(hg book | grep \* | cut -d\ -f3) set -l book " @ "(command hg book | grep \* | cut -d\ -f3)
echo "$__bobthefish_branch_glyph $branch$book" echo "$__bobthefish_branch_glyph $branch$book"
end end
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment