From e7bfedd142835792281083a3055139c5f3353f91 Mon Sep 17 00:00:00 2001 From: Brett Laptop Date: Tue, 1 Oct 2024 16:49:25 -0400 Subject: [PATCH] commit script patch --- CMakeLists.txt | 2 +- commit.py | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 19393c7..5cc50be 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.20) include(cmake/color.cmake) -set(BLT_VERSION 2.0.0) +set(BLT_VERSION 2.0.1) set(BLT_TARGET BLT) diff --git a/commit.py b/commit.py index 00d0d95..d7ce6c5 100755 --- a/commit.py +++ b/commit.py @@ -199,6 +199,8 @@ def make_release(env: EnvData, name): 'X-GitHub-Api-Version': '2022-11-28' } for url in urls: + if not "github" in url: + continue response = requests.post(url, headers=headers, data=json.dumps(data)) if response.status_code == 201: print('Release created successfully!')