You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
check_directory_exists() {
|
|
local remote_dir="$1"
|
|
|
|
curl --output /dev/null --silent --head --fail "$remote_dir"
|
|
}
|
|
|
|
S3_URL="https://${S3_BUCKET}.s3.amazonaws.com/${S3_BUILD_DIRECTORY}/";
|
|
if check_directory_exists "$S3_URL"; then
|
|
exit 1
|
|
fi
|