We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8984a2e commit d4280bbCopy full SHA for d4280bb
Makefile
@@ -33,8 +33,10 @@ clipper-${VERSION}.zip: clipper
33
zip $@ clipper
34
35
upload: clipper-${VERSION}.zip
36
- aws --curl-options=--insecure put s3.wincent.com/clipper/releases/clipper-${VERSION}.zip clipper-${VERSION}.zip
37
- aws --curl-options=--insecure put "s3.wincent.com/clipper/releases/clipper-${VERSION}.zip?acl" --public
+ # Requires credentials to have been set up with: `aws configure`
+ # Verify credential set-up with: `aws sts get-caller-identity`
38
+ # See also: ~/.aws/credentials
39
+ aws s3 cp "clipper-${VERSION}.zip" s3://s3.wincent.com/clipper/releases/clipper-${VERSION}.zip --acl public-read
40
41
all: tag build archive upload
42
0 commit comments