@@ -24,7 +24,7 @@ This is just one tool in the chain. `notes` is a command line tool, and some peo
2424### Automatic:
2525
2626``` bash
27- curl -L https://rawgit.com/pimterry/notes/master /install.sh | bash
27+ curl -L https://rawgit.com/pimterry/notes/latest-release /install.sh | bash
2828```
2929This will install ` notes ` , a default configuration, a man page, and bash completion if possible.
3030
@@ -33,7 +33,7 @@ This will install `notes`, a default configuration, a man page, and bash complet
3333Download ` notes ` , ` chmod +x ` , put it in your ` $path ` . This will probably do it:
3434
3535``` bash
36- curl https://cdn.rawgit.com/pimterry/notes/v0.2.0 /notes > /usr/local/bin/notes && chmod +x /usr/local/bin/notes
36+ curl https://cdn.rawgit.com/pimterry/notes/latest-release /notes > /usr/local/bin/notes && chmod +x /usr/local/bin/notes
3737```
3838
3939#### Installing auto completion
@@ -49,28 +49,28 @@ Installing the completions might be as follows:
4949** Bash**
5050
5151``` bash
52- curl https://cdn.rawgit.com/pimterry/notes/v0.2.0 /notes.bash_completion > /usr/share/bash-completion/completions/notes
52+ curl https://cdn.rawgit.com/pimterry/notes/latest-release /notes.bash_completion > /usr/share/bash-completion/completions/notes
5353```
5454
5555** Zsh**
5656
5757On * buntu based distros and OSX:
5858``` bash
59- curl -L https://rawgit.com/pimterry/notes/master /_notes > /usr/local/share/zsh/site-functions/_notes
59+ curl -L https://rawgit.com/pimterry/notes/latest-release /_notes > /usr/local/share/zsh/site-functions/_notes
6060```
6161
6262On other Unix distros:
6363
6464``` bash
65- curl -L https://rawgit.com/pimterry/notes/master /_notes > /usr/share/zsh/site-functions/_notes
65+ curl -L https://rawgit.com/pimterry/notes/latest-release /_notes > /usr/share/zsh/site-functions/_notes
6666```
6767
6868You'll need to open a new shell for this to take effect.
6969
7070## What if I want to uninstall this?
7171If you used the automated install script to install notes, you can uninstall it the same way, by running:
7272``` bash
73- curl -L https://rawgit.com/pimterry/notes/master /install.sh | bash -s -- uninstall
73+ curl -L https://rawgit.com/pimterry/notes/latest-release /install.sh | bash -s -- uninstall
7474```
7575
7676## How do I configure this?
0 commit comments