diff options
author | GeckoEidechse <40122905+GeckoEidechse@users.noreply.github.com> | 2022-11-25 21:10:05 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-25 21:10:05 +0100 |
commit | 04c1da4e9cbbd6c3f7e63b9b40160f68cd641331 (patch) | |
tree | 7755ff89821e1f6869c0939f1571e0efe5ea77ff /scripts | |
parent | 2cc698a62119a45f87a20a9c56f9acca92c618d5 (diff) | |
download | FlightCore-04c1da4e9cbbd6c3f7e63b9b40160f68cd641331.tar.gz FlightCore-04c1da4e9cbbd6c3f7e63b9b40160f68cd641331.zip |
chore: Update all references of personal repo (#70)
and change them to R2NorthstarTools org
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/create-release-file.py | 6 |
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" } } } |