Skip to content

Commit 20cf511

Browse files
committed
shell -> bash
1 parent 96e7b20 commit 20cf511

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

CONTRIBUTING.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ There are three tools that helps us to test emacs-elixir:
6868

6969
To install [EVM](https://github.com/rejeep/evm), run:
7070

71-
```shell
71+
```bash
7272
$ sudo mkdir /usr/local/evm
7373
$ sudo chown $USER: /usr/local/evm
7474
$ curl -fsSkL https://raw.github.com/rejeep/evm/master/go | bash
@@ -77,13 +77,13 @@ $ export PATH="~/.evm/bin:$PATH" # Add it to your .bashrc or analogue
7777

7878
To list all available Emacs versions you can install, run:
7979

80-
```shell
80+
```bash
8181
$ evm list
8282
```
8383

8484
To install a version (for example `emacs-24.3-bin`), run:
8585

86-
```shell
86+
```bash
8787
$ evm install emacs-24.3-bin
8888
```
8989

@@ -93,14 +93,14 @@ Read more about [EVM](https://github.com/rejeep/evm).
9393

9494
To install Cask, run:
9595

96-
```shell
96+
```bash
9797
$ curl -fsSkL https://raw.github.com/cask/cask/master/go | python
9898
$ export PATH="~/.cask/bin:$PATH" # Add it to your .bashrc or analogue
9999
```
100100

101101
To install [Ert-runner](https://github.com/rejeep/ert-runner.el), run:
102102

103-
```shell
103+
```bash
104104
$ cd path/to/emacs-elixir
105105
$ cask install # install ert-runner
106106
$ EMACS=`evm bin emacs-24.3-bin` cask install # install ert-runner for Emacs 24.3
@@ -110,37 +110,37 @@ $ EMACS=`evm bin emacs-24.3-bin` cask install # install ert-runner for Emacs 24.
110110

111111
* Run all tests:
112112

113-
```shell
113+
```bash
114114
$ cask exec ert-runner
115115
```
116116

117117
* Run all tests for Emacs 24.3:
118118

119-
```shell
119+
```bash
120120
$ EMACS=`evm bin emacs-24.3-bin` cask exec ert-runner
121121
```
122122

123123
Run all tests which are tagged `fontification`:
124124

125-
```shell
125+
```bash
126126
$ cask exec ert-runner -t fontification
127127
```
128128

129129
Run all tests with `elixir-smie-verbose-p` equal to `t`:
130130

131-
```shell
131+
```bash
132132
$ cask exec ert-runner --verbose
133133
```
134134

135135
Run all tests interactively:
136136

137-
```shell
137+
```bash
138138
$ cask exec ert-runner --win
139139
```
140140

141141
Run all tests which are tagged `fontification` for Emacs 24.3 interactively:
142142

143-
```shell
143+
```bash
144144
$ EMACS=`evm bin emacs-24.3-bin` cask exec ert-runner -t fontification --win
145145
```
146146

0 commit comments

Comments
 (0)