This repository was archived by the owner on Mar 27, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -22,18 +22,18 @@ These analyses can be performed on a single image, or a diff can be performed on
22
22
23
23
### macOS
24
24
``` shell
25
- curl -LO https://storage.googleapis.com/container-diff/latest/container-diff-darwin-amd64 && chmod +x container-diff-darwin-amd64 && sudo mv container-diff-darwin-amd64 /usr/local/bin/container-diff
25
+ curl -LO https://storage.googleapis.com/container-diff/latest/container-diff-darwin-amd64 && sudo install container-diff-darwin-amd64 /usr/local/bin/container-diff
26
26
```
27
27
28
28
### Linux
29
29
``` shell
30
- curl -LO https://storage.googleapis.com/container-diff/latest/container-diff-linux-amd64 && chmod +x container-diff-linux-amd64 && sudo mv container-diff-linux-amd64 /usr/local/bin/container-diff
30
+ curl -LO https://storage.googleapis.com/container-diff/latest/container-diff-linux-amd64 && sudo install container-diff-linux-amd64 /usr/local/bin/container-diff
31
31
```
32
32
33
33
OR, if you want to avoid using sudo:
34
34
35
35
``` shell
36
- 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
36
+ curl -LO https://storage.googleapis.com/container-diff/latest/container-diff-linux-amd64 && mkdir -p $HOME /bin && export PATH=$PATH :$HOME /bin && install container-diff-linux-amd64 $HOME /bin/container-diff
37
37
```
38
38
39
39
There is also an [ Arch Linux package] ( https://www.archlinux.org/packages/community/x86_64/container-diff/ ) . You can install by running:
You can’t perform that action at this time.
0 commit comments