From de0349399c5fcf0aa624e6607c17fd47fd5301bf Mon Sep 17 00:00:00 2001 From: Fabian Homborg Date: Sun, 20 Mar 2016 12:17:00 +0100 Subject: robbyrussell prompt: Check for git/hg existence Fixes #2826 --- share/tools/web_config/sample_prompts/robbyrussell.fish | 2 ++ 1 file changed, 2 insertions(+) (limited to 'share/tools') diff --git a/share/tools/web_config/sample_prompts/robbyrussell.fish b/share/tools/web_config/sample_prompts/robbyrussell.fish index 1c7fa748..0a895ba4 100644 --- a/share/tools/web_config/sample_prompts/robbyrussell.fish +++ b/share/tools/web_config/sample_prompts/robbyrussell.fish @@ -14,6 +14,7 @@ function fish_prompt end function _is_git_repo + type -q git; or return 1 git status -s >/dev/null ^/dev/null end @@ -26,6 +27,7 @@ function fish_prompt end function _is_hg_repo + type -q hg; or return 1 hg summary >/dev/null ^/dev/null end -- cgit v1.2.3