From 978ceeb13b28b7ba247f152937638500f19a1373 Mon Sep 17 00:00:00 2001 From: Brett Laptop Date: Thu, 26 Sep 2024 20:23:50 -0400 Subject: [PATCH] test --- CMakeLists.txt | 2 +- commit.py | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fc0602..005dbab 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,5 @@ cmake_minimum_required(VERSION 3.25) -project(COSC-4P80-Assignment-1 VERSION 5.0.0) +project(COSC-4P80-Assignment-1 VERSION 6.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 d33d7d7..167516d 100755 --- a/commit.py +++ b/commit.py @@ -171,6 +171,8 @@ def make_branch(config: Config, name): def make_release(env: EnvData, name): print(f"Making new release {name}") repos_v = open_process(["git", "remote", "-v"])[0].splitlines() + print(repos_v) + exit(0) urls = [] for line in repos_v: origin = ''.join(itertools.takewhile(str.isalpha, line))