| #!/usr/bin/env bash | |
| set -eou pipefail | |
| DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )" | |
| source "${DIR}/common_utils.sh" | |
| # Allow for users to pass PACKAGE_NAME | |
| # For use with other packages, i.e. torchvision, etc. | |
| PACKAGE_NAME=${PACKAGE_NAME:-torch} | |
| aws_promote whl "${PACKAGE_NAME}" |