Skip to content

Commit 46cc051

Browse files
committed
code samples with 'sh' instead of 'bash'
1 parent 1d09ef1 commit 46cc051

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@
55
### GNU/Linux
66

77
#### Using pdflatex
8-
```bash
8+
```sh
99
sudo apt-get install texlive
1010
wget -O res.cls http://www.ctan.org/tex-archive/macros/latex/contrib/resume/res.cls
1111
pdflatex aaronrobson-cv.tex
1212
```
1313

1414
#### Using docker
15-
```bash
15+
```sh
1616
docker run --rm -i \
1717
--user $(id -u ${USER}):$(id -g ${USER}) \
1818
--net=none \
@@ -24,7 +24,7 @@ docker run --rm -i \
2424

2525
#### Automatically
2626
Use locally installed `pdflatex` if present and if not try `docker`.
27-
```bash
27+
```sh
2828
make
2929
```
3030

@@ -37,25 +37,25 @@ make
3737

3838
### To push to the [aaronrobson.uk/cv](http://www.aaronrobson.uk/cv/) website
3939
Run this to find what the next tag should be:
40-
```bash
40+
```sh
4141
git tag
4242
```
4343

4444
Then tag and upload like this:
45-
```bash
45+
```sh
4646
git tag vx.x
4747
git push --tags
4848
```
4949

5050
Raise the PR in github, but don't merge it yet (https://stackoverflow.com/questions/60597400/how-to-do-a-fast-forward-merge-on-github).
5151

5252
Then merge locally with:
53-
```bash
54-
git checkout your-new-branch && git merge master --ff-only
53+
```sh
54+
git checkout master && git merge your-new-branch --ff-only
5555
```
5656

5757
And upload like this:
58-
```bash
58+
```sh
5959
git checkout master
6060
git push
6161
```

0 commit comments

Comments
 (0)