Fix error message

Co-authored-by: Kevin Stillhammer <kevin.stillhammer@gmail.com>
This commit is contained in:
pollenJP(@'ω'@) 2024-11-30 09:23:12 +09:00 committed by GitHub
parent c897d38bab
commit 170dfd48ce
WARNING! Although there is a key with this ID in the database it does not verify this commit! This commit is SUSPICIOUS.
GPG key ID: B5690EEEBB952194

View file

@ -12,5 +12,5 @@ export async function getLatestReleaseVersion(githubToken: string) {
if (latestRelease) {
return latestRelease.tag_name;
}
throw new Error("No releases found for this repository.");
throw new Error("Could not determine latest release.");
}