We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I tried to upload an image to S3 and set the cache-control to "public, max-age=31536000" My command was something like this:
aws.command('s3api put-object --bucketb --key pic.png ' + '--body f:\\pic.png ' + '--acl public-read --content-type image/png --cache-control "public, max-age=31536000"')
But i got back error with message
Unknown options: max-age=31536000"
The documentetion for the aws-cli can be found here!
It says if you want to use space between the parameter, you can use quotes
The text was updated successfully, but these errors were encountered:
The reason is again:
[...command.split(' ')] introduced by commit 1d0525a#diff-a2a171449d862fe29692ce031981047d7ab755ae7f84c707aef80701b3ea0c80
@69
I will fix and publish new release.
Sorry, something went wrong.
2.2.2 Fix: Using space inside parameter #16, use exec if command cont…
dd3cc9e
…ains "
Fixed in https://github.com/Quobject/aws-cli-js/releases/tag/2.2.2
No branches or pull requests
I tried to upload an image to S3 and set the cache-control to "public, max-age=31536000"
My command was something like this:
But i got back error with message
The documentetion for the aws-cli can be found here!
It says if you want to use space between the parameter, you can use quotes
The text was updated successfully, but these errors were encountered: