Brett 2024-09-26 20:23:50 -04:00
parent a98755bd6c
commit 978ceeb13b
2 changed files with 3 additions and 1 deletions

View File

@ -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)

View File

@ -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))