Fix typo in message (#168)

This commit is contained in:
Jakub Kozłowski 2021-10-26 02:57:46 +02:00 committed by GitHub
parent a80139913a
commit 69a9b03fd9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -167,7 +167,7 @@ export const upload = async (
const json = await resp.json();
if (resp.status !== 201) {
throw new Error(
`Failed to upload release asset ${name}. recieved status code ${
`Failed to upload release asset ${name}. received status code ${
resp.status
}\n${json.message}\n${JSON.stringify(json.errors)}`
);