Skip to content
This repository was archived by the owner on Mar 27, 2024. It is now read-only.

Commit 1b11c9b

Browse files
authored
Merge pull request #150 from yarikoptic/doc-mkdir-p
DOC: use -p with mkdir ~/bin since might exist already
2 parents 97e5f12 + 6a32bf7 commit 1b11c9b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ curl -LO https://storage.googleapis.com/container-diff/latest/container-diff-lin
2828
OR, if you want to avoid using sudo:
2929

3030
```shell
31-
curl -LO https://storage.googleapis.com/container-diff/latest/container-diff-linux-amd64 && chmod +x container-diff-linux-amd64 && mkdir $HOME/bin && export PATH=$PATH:$HOME/bin && mv container-diff-linux-amd64 $HOME/bin/container-diff
31+
curl -LO https://storage.googleapis.com/container-diff/latest/container-diff-linux-amd64 && chmod +x container-diff-linux-amd64 && mkdir -p $HOME/bin && export PATH=$PATH:$HOME/bin && mv container-diff-linux-amd64 $HOME/bin/container-diff
3232
```
3333

3434
### Windows

0 commit comments

Comments
 (0)