aws-delivlib 13.4.0 → 13.4.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -27,7 +27,8 @@ fi
27
27
  if [[ "${idempotency_token:-}" != "" ]]; then
28
28
  echo "Idempotency token: $idempotency_token"
29
29
 
30
- aws s3 ls $BUCKET_URL/$idempotency_token > /dev/null && {
30
+ # Must use 's3 cp' to try and read exact filename. 's3 ls' would match prefixes as well.
31
+ aws s3 cp $BUCKET_URL/$idempotency_token - > /dev/null 2>&1 && {
31
32
  echo "Token found, stopping."
32
33
  exit 0
33
34
  } || {
package/package.json CHANGED
@@ -78,7 +78,7 @@
78
78
  ],
79
79
  "main": "lib/index.js",
80
80
  "license": "Apache-2.0",
81
- "version": "13.4.0",
81
+ "version": "13.4.1",
82
82
  "jest": {
83
83
  "testMatch": [
84
84
  "**/lib/__tests__/**/?(*.)+(spec|test).js?(x)"