dec508542d
AWS CLI v2 (or possibly some other config change on our new build system) doesn't like POSIX paths, so convert to Windows paths
28 lines
643 B
Bash
Executable file
28 lines
643 B
Bash
Executable file
#!/bin/bash
|
|
#
|
|
# Upload build archives from 'dist' to S3 with the specified channel and version
|
|
#
|
|
set -euo pipefail
|
|
|
|
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
ROOT_DIR="$(dirname "$SCRIPT_DIR")"
|
|
. "$ROOT_DIR/config.sh"
|
|
|
|
function usage {
|
|
echo Usage: $0 CHANNEL VERSION >&2
|
|
exit 1
|
|
}
|
|
|
|
CHANNEL="${1:-}"
|
|
VERSION="${2:-}"
|
|
|
|
if [[ -z "$CHANNEL" ]] || [[ -z "$VERSION" ]]; then
|
|
usage
|
|
fi
|
|
|
|
source_dir="$DIST_DIR"
|
|
if [ "`uname -o 2> /dev/null`" = "Cygwin" ]; then
|
|
source_dir=$(cygpath -w "$source_dir")
|
|
fi
|
|
url="s3://$S3_BUCKET/$S3_DIST_PATH/$CHANNEL/$VERSION/"
|
|
aws s3 sync --exclude "files-*" --exclude build_id "$source_dir" $url
|