Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Adam <dev@robert-adam.de>2022-01-02 19:35:06 +0300
committerGitHub <noreply@github.com>2022-01-02 19:35:06 +0300
commitad83b4b577e62b509344a6fc9055338fe8407761 (patch)
tree72ff55dce96119a68d40614cea2dfcd904fcf621
parentef045be7fe04657e27141922000d84a144b75c26 (diff)
parentd336491b2d52b5371bf90a8fc61eb18a17653dce (diff)
Merge PR #5402: BUILD: Fix build error
ef045be changed how the mumble-version.py script works, but these two scripts have not been adapted to it yet. This commit fixes that.
-rwxr-xr-x.ci/azure-pipelines/build_linux.bash2
-rwxr-xr-x.ci/azure-pipelines/build_macos.bash2
2 files changed, 2 insertions, 2 deletions
diff --git a/.ci/azure-pipelines/build_linux.bash b/.ci/azure-pipelines/build_linux.bash
index b0b2e6a50..7116c30ce 100755
--- a/.ci/azure-pipelines/build_linux.bash
+++ b/.ci/azure-pipelines/build_linux.bash
@@ -20,7 +20,7 @@
#
if [[ -n "$MUMBLE_BUILD_NUMBER_TOKEN" ]]; then
- VERSION=$(python "scripts/mumble-version.py" --format version)
+ VERSION=$(python "scripts/mumble-version.py")
BUILD_NUMBER=$(curl "https://mumble.info/get-build-number?commit=${BUILD_SOURCEVERSION}&version=${VERSION}&token=${MUMBLE_BUILD_NUMBER_TOKEN}")
else
BUILD_NUMBER=0
diff --git a/.ci/azure-pipelines/build_macos.bash b/.ci/azure-pipelines/build_macos.bash
index ff1099bb1..04e636f18 100755
--- a/.ci/azure-pipelines/build_macos.bash
+++ b/.ci/azure-pipelines/build_macos.bash
@@ -31,7 +31,7 @@
#
if [[ -n "$MUMBLE_BUILD_NUMBER_TOKEN" ]]; then
- VERSION=$(python "scripts/mumble-version.py" --format version)
+ VERSION=$(python "scripts/mumble-version.py")
BUILD_NUMBER=$(curl "https://mumble.info/get-build-number?commit=${BUILD_SOURCEVERSION}&version=${VERSION}&token=${MUMBLE_BUILD_NUMBER_TOKEN}")
else
BUILD_NUMBER=0