From 6825d14395a05a399159d1c76cf5570aa86c7dba Mon Sep 17 00:00:00 2001 From: Peter Squicciarini Date: Tue, 14 Aug 2018 10:50:44 -0400 Subject: [PATCH] Binary releases of VS Code without MS branding/telemetry/licensing --- check_tags.sh | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/check_tags.sh b/check_tags.sh index 45cc2da..8f2b9d3 100755 --- a/check_tags.sh +++ b/check_tags.sh @@ -5,14 +5,8 @@ then echo "Latest MS tag ${LATEST_MS_TAG} already exists in VSCodium. Bail" else echo "New MS tag found, continuing build" - if [[ "$TRAVIS_OS_NAME" != "osx" ]]; then - echo $LATEST_MS_TAG > version.md - git config --local user.name "Travis CI" - git config --local user.email "builds@travis-ci.com" - git add version.md - git commit -m "${LATEST_MS_TAG}" - git tag $LATEST_MS_TAG - git push --quiet https://$GITHUB_TOKEN@github.com/VSCodium/vscodium master --tags > /dev/null 2>&1 - fi + git config --local user.name "Travis CI" + git config --local user.email "builds@travis-ci.com" + git tag $LATEST_MS_TAG export SHOULD_BUILD="yes" fi \ No newline at end of file