Brett 2024-09-26 20:26:05 -04:00
parent 95bac2d1f8
commit b36781464a
2 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
cmake_minimum_required(VERSION 3.25)
project(COSC-4P80-Assignment-1 VERSION 8.0.0)
project(COSC-4P80-Assignment-1 VERSION 9.0.0)
option(ENABLE_ADDRSAN "Enable the address sanitizer" OFF)
option(ENABLE_UBSAN "Enable the ub sanitizer" OFF)

View File

@ -175,7 +175,7 @@ def make_release(env: EnvData, name):
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'))
urls.append(open_process(["git", "remote", "get-url", origin])[0].decode('utf8').replace("\n", ""))
urls = set(urls)
print(f"Urls: {urls}")
data = {