diff --git a/src/download/download-latest.ts b/src/download/download-latest.ts
index 5723cf1..9b9c2eb 100644
--- a/src/download/download-latest.ts
+++ b/src/download/download-latest.ts
@@ -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.");
 }