You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Description
The script deploy-s3-dist.sh reads parameter --single-region incorrectly.
The parameter does not have any value, so the loop needs to pass only the key. Now it calls shift twice and as the result the parameters passed after that are read incorrectly.
Current situation
-r|--single-region)
SINGLE_REGION=true
shift # past argument
shift # past value
;;
Expected behavior
-r|--single-region)
SINGLE_REGION=true
shift # past key
;;
Version: v3.0.0
The text was updated successfully, but these errors were encountered:
Description
The script
deploy-s3-dist.sh
reads parameter--single-region
incorrectly.The parameter does not have any value, so the loop needs to pass only the key. Now it calls
shift
twice and as the result the parameters passed after that are read incorrectly.Current situation
Expected behavior
Version: v3.0.0
The text was updated successfully, but these errors were encountered: