DEVTOOLS-7321: Don't skip macOS builds based on tag

This commit is contained in:
Robert McNeil 2020-06-16 11:24:56 -07:00
parent 12c615e2e6
commit 0f893fab47
1 changed files with 0 additions and 6 deletions

View File

@ -2,12 +2,6 @@
set -euo pipefail
if ! git describe --tags --exact-match 2>/dev/null ; then
echo "Skipping public release for an untagged commit."
echo "##teamcity[buildStatus status='SUCCESS' text='Skipped due to lack of tag']"
exit 0
fi
if [[ "$(uname)" != "Darwin" ]] ; then
echo "This should be run on macOS"
exit 1