Skip to content

Commit

Permalink
Update GIT_TEMPLATE_DIR example command
Browse files Browse the repository at this point in the history
It is preferable to not use backticks in Bash, as `$(...)` is in general
more flexible (allowing nesting).
  • Loading branch information
sds committed Aug 25, 2017
1 parent 406534c commit 67c42a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ If you want to use `overcommit` for all repositories you create/clone going
forward, add the following to automatically run in your shell environment:

```bash
export GIT_TEMPLATE_DIR=`overcommit --template-dir`
export GIT_TEMPLATE_DIR="$(overcommit --template-dir)"
```

The `GIT_TEMPLATE_DIR` provides a directory for Git to use as a template
Expand Down

0 comments on commit 67c42a7

Please sign in to comment.