We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 81834b8 commit 0e921ccCopy full SHA for 0e921cc
.goreleaser.yml
@@ -1,6 +1,6 @@
1
builds:
2
- main: ./cmd/oras
3
- binary: ./bin/oras
+ binary: ./oras
4
env:
5
- CGO_ENABLED=0
6
goos:
README.md
@@ -71,10 +71,10 @@ curl -LO https://github.com/shizhMSFT/oras/releases/download/v0.3.1/oras_0.3.1_l
71
curl -LO https://github.com/shizhMSFT/oras/releases/download/v0.3.1/oras_0.3.1_darwin_amd64.tar.gz
72
73
# unpack, install, dispose
74
-mkdir -p oras/
75
-tar -zxf oras_0.3.1_*.tar.gz -C oras/
76
-mv oras/bin/oras /usr/local/bin/
77
-rm -rf oras_0.3.1_*.tar.gz oras/
+mkdir -p oras-install/
+tar -zxf oras_0.3.1_*.tar.gz -C oras-install/
+mv oras-install/oras /usr/local/bin/
+rm -rf oras_0.3.1_*.tar.gz oras-install/
78
```
79
80
Then, to run:
0 commit comments