Correctly deal with paths containing spaces and special characters

Resolves #21.
This commit is contained in:
2015-06-16 08:54:22 +01:00
parent 69201d1dbd
commit ee81e21a6d
2 changed files with 3 additions and 3 deletions

View File

@@ -38,7 +38,7 @@ Edit your `~/.bash_profile` or `~/.profile` and add the following to the top:
```bash
export GITAWAREPROMPT=~/.bash/git-aware-prompt
source $GITAWAREPROMPT/main.sh
source "${GITAWAREPROMPT}/main.sh"
```

View File

@@ -1,2 +1,2 @@
source $GITAWAREPROMPT/colors.sh
source $GITAWAREPROMPT/prompt.sh
source "${GITAWAREPROMPT}/colors.sh"
source "${GITAWAREPROMPT}/prompt.sh"