Skip to content

Commit

Permalink
Correctly deal with paths containing spaces and special characters
Browse files Browse the repository at this point in the history
Resolves jimeh#21.
  • Loading branch information
jimeh committed Jun 16, 2015
1 parent 69201d1 commit ee81e21
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"
```


Expand Down
4 changes: 2 additions & 2 deletions main.sh
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
source $GITAWAREPROMPT/colors.sh
source $GITAWAREPROMPT/prompt.sh
source "${GITAWAREPROMPT}/colors.sh"
source "${GITAWAREPROMPT}/prompt.sh"

0 comments on commit ee81e21

Please sign in to comment.