Skip to content

Commit 173bbe4

Browse files
authored
Update src/commands/generateSourcekitConfiguration.ts
1 parent dc53abc commit 173bbe4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/commands/generateSourcekitConfiguration.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ async function checkURLExists(url: string): Promise<boolean> {
115115
if (response.ok) {
116116
return true;
117117
} else if (response.status !== 404) {
118-
throw new Error(`Received exit code ${response.status} when trying to fetch ${url}`);
118+
throw new Error(`Received response code ${response.status} when trying to fetch ${url}`);
119119
}
120120
return false;
121121
} catch {

0 commit comments

Comments
 (0)