We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3244b28 commit 17f43a7Copy full SHA for 17f43a7
1 file changed
src/fetch.ts
@@ -100,7 +100,7 @@ export async function findExactSemanticVersionTag(
100
}
101
102
throw new Error(
103
- `Expected to find an exact semantic version tag matching ${givenTag}`
+ `Expected to find an exact semantic version tag matching ${givenTag} for ${slug.owner}/${slug.repository}`
104
);
105
106
@@ -125,7 +125,7 @@ export async function fetchReleaseAssetMetadataFromTag(
125
126
if (asset === undefined) {
127
128
- `Expected to find asset in release ${tag} with label ${targetTriple}`
+ `Expected to find asset in release ${slug.owner}/${slug.repository}@${tag} with label ${targetTriple}`
129
130
131
return {
0 commit comments