From c4f5cd496edb3fe732263b759f3fc4c3e8da6a95 Mon Sep 17 00:00:00 2001 From: Dovie Weinstock Date: Thu, 22 Jun 2023 11:19:31 -0400 Subject: [PATCH] fix bashrc path with spaces --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5f988e4..c084d85 100644 --- a/README.md +++ b/README.md @@ -84,7 +84,7 @@ Add to the `~/.bashrc`: ``` if [ -f "$HOME/.bash-git-prompt/gitprompt.sh" ]; then GIT_PROMPT_ONLY_IN_REPO=1 - source $HOME/.bash-git-prompt/gitprompt.sh + source "$HOME/.bash-git-prompt/gitprompt.sh" fi ```