From 7c816c7c0bf57213e099b0b17ba91cc863b5910f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Ho=C5=99e=C5=88ovsk=C3=BD?= Date: Wed, 6 May 2020 20:49:15 +0200 Subject: [PATCH] Upload conan releases to catch2 remote (instead of Catch2) At some point we moved over to catch2:catchorg (notice lowercase `c`) instead of Catch2:catchorg, but we kept uploading the released packages to the upper-cased repository... Time to fix this, and then merge them again. --- .conan/build.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.conan/build.py b/.conan/build.py index eefeecaf..ba075b6d 100644 --- a/.conan/build.py +++ b/.conan/build.py @@ -31,7 +31,7 @@ class BuilderSettings(object): not match the stable pattern. Otherwise it will upload to stable channel. """ - return os.getenv("CONAN_UPLOAD", "https://api.bintray.com/conan/catchorg/Catch2") + return os.getenv("CONAN_UPLOAD", "https://api.bintray.com/conan/catchorg/catch2") @property def upload_only_when_stable(self):