diff --git a/src/uploader.ts b/src/uploader.ts index bee6729..ba7214c 100644 --- a/src/uploader.ts +++ b/src/uploader.ts @@ -14,7 +14,7 @@ function uploadFile(entry: readdirp.EntryInfo, storageName: string, accessKey: s body: readStream }).then(response => { if (response.status === 201) { - info(`Successfull deployment of ${entry.path}`); + info(`Successfully deployed ${entry.path}`); } else { throw new Error(`Uploading ${entry.path} has failed width status code ${response.status}.`); }