aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rw-r--r--scripts/create-release-file.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/create-release-file.py b/scripts/create-release-file.py
index 84184d8c..de9336d3 100644
--- a/scripts/create-release-file.py
+++ b/scripts/create-release-file.py
@@ -12,7 +12,7 @@ PATH_TO_LINUX_SIG = f"./artifact/appimage/flight-core_{version_number_stripped_v
PATH_TO_WINDOWS_SIG = f"./artifact/msi/FlightCore_{version_number_stripped_v}_x64_en-US.msi.zip.sig"
# Text to show in update notification
-RELEASE_TEXT = "See the following link for release notes: https://github.com/GeckoEidechse/FlightCore/releases"
+RELEASE_TEXT = "See the following link for release notes: https://github.com/R2NorthstarTools/FlightCore/releases"
# Read signatures
with open(PATH_TO_LINUX_SIG, "rt") as f:
@@ -30,11 +30,11 @@ release_dict = {
"platforms": {
"linux-x86_64": {
"signature": linux_sig,
- "url": f"https://github.com/GeckoEidechse/FlightCore/releases/download/{version_number}/flight-core_{version_number_stripped_v}_amd64.AppImage.tar.gz"
+ "url": f"https://github.com/R2NorthstarTools/FlightCore/releases/download/{version_number}/flight-core_{version_number_stripped_v}_amd64.AppImage.tar.gz"
},
"windows-x86_64": {
"signature": windows_sig,
- "url": f"https://github.com/GeckoEidechse/FlightCore/releases/download/{version_number}/FlightCore_{version_number_stripped_v}_x64_en-US.msi.zip"
+ "url": f"https://github.com/R2NorthstarTools/FlightCore/releases/download/{version_number}/FlightCore_{version_number_stripped_v}_x64_en-US.msi.zip"
}
}
}