From 594cab31ed7bc0cb13e02b2f16d76a466fd2e126 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 27298651..37975a8a 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):