From 6e2d125d552d0e33fc8d2e3ff79baf2ace16d562 Mon Sep 17 00:00:00 2001 From: Brett Laptop Date: Thu, 26 Sep 2024 20:31:33 -0400 Subject: [PATCH] test --- CMakeLists.txt | 2 +- commit.py | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ca45fe4..f8f964f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,5 @@ cmake_minimum_required(VERSION 3.25) -project(COSC-4P80-Assignment-1 VERSION 10.0.0) +project(COSC-4P80-Assignment-1 VERSION 11.0.0) option(ENABLE_ADDRSAN "Enable the address sanitizer" OFF) option(ENABLE_UBSAN "Enable the ub sanitizer" OFF) diff --git a/commit.py b/commit.py index e95f9da..a938d6c 100755 --- a/commit.py +++ b/commit.py @@ -174,8 +174,7 @@ def make_release(env: EnvData, name): urls = [] for line in repos_v: origin = ''.join(itertools.takewhile(str.isalpha, line.decode('utf8'))) - print(f"Origin: {origin}") - urls.append(open_process(["git", "remote", "get-url", origin])[0].decode('utf8').replace("\n", "") + "/releases") + urls.append("https://api.github.com/repos/" + open_process(["git", "remote", "get-url", origin])[0].decode('utf8').replace("\n", "").replace("https://github.com/") + "releases") urls = set(urls) print(f"Urls: {urls}") data = {