mirror of
https://github.com/romkatv/powerlevel10k.git
synced 2026-09-18 08:20:10 +00:00
Hide error when no origin in git repo
Fix git ls-remote call to match as in sugessted code for redirect error to null.
This commit is contained in:
+1
-1
@@ -111,7 +111,7 @@ function +vi-hg-bookmarks() {
|
||||
function +vi-vcs-detect-changes() {
|
||||
if [[ "${hook_com[vcs]}" == "git" ]]; then
|
||||
|
||||
local remote=`git ls-remote --get-url`
|
||||
local remote=$(git ls-remote --get-url 2> /dev/null)
|
||||
if [[ "$remote" =~ "github" ]] then
|
||||
vcs_visual_identifier='VCS_GIT_GITHUB_ICON'
|
||||
elif [[ "$remote" =~ "bitbucket" ]] then
|
||||
|
||||
Reference in New Issue
Block a user