This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/CI/check_not_a_release

13 lines
239 B
Plaintext
Raw Normal View History

#!/bin/bash
rm -f ./not_a_release
aws s3 cp --quiet s3://aws-sdk-cpp-pipeline-sdks-team/not_a_release ./not_a_release
if [ -f ./not_a_release ]; then
aws s3 rm s3://aws-sdk-cpp-pipeline-sdks-team/not_a_release
exit 1
fi
exit 0