From 170dfd48ce1147147aa43ef8950371cc55df70bf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?pollenJP=28=40=27=CF=89=27=40=29?= Date: Sat, 30 Nov 2024 09:23:12 +0900 Subject: [PATCH] Fix error message Co-authored-by: Kevin Stillhammer --- src/download/download-latest.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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."); }