diff --git a/contrib/teamcity/build-configurations.sh b/contrib/teamcity/build-configurations.sh deleted file mode 100755 index 3b0bd14a7..000000000 --- a/contrib/teamcity/build-configurations.sh +++ /dev/null @@ -1,20 +0,0 @@ -#!/usr/bin/env bash - -export LC_ALL=C.UTF-8 - -set -euxo pipefail - -: "${ABC_BUILD_NAME:=""}" - -if [ $# -ge 1 ]; then - ABC_BUILD_NAME="$1" - shift -fi - -if [ -z "${ABC_BUILD_NAME}" ]; then - echo "Error: Environment variable ABC_BUILD_NAME must be set" - exit 1 -fi - -TOPLEVEL=$(git rev-parse --show-toplevel) -python3 "${TOPLEVEL}/contrib/teamcity/build-configurations.py" "${ABC_BUILD_NAME}"