We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dc53abc commit 173bbe4Copy full SHA for 173bbe4
src/commands/generateSourcekitConfiguration.ts
@@ -115,7 +115,7 @@ async function checkURLExists(url: string): Promise<boolean> {
115
if (response.ok) {
116
return true;
117
} else if (response.status !== 404) {
118
- throw new Error(`Received exit code ${response.status} when trying to fetch ${url}`);
+ throw new Error(`Received response code ${response.status} when trying to fetch ${url}`);
119
}
120
return false;
121
} catch {
0 commit comments