Modifying messages to match the current situation

I know it was a few seconds before. But now it is a few minutes.
This commit is contained in:
道化師 2019-12-19 14:14:01 +09:00 committed by GitHub
parent f2c29b5440
commit 2d8dc608e8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -73,7 +73,7 @@ async function _publish(packagePath: string, pat: string, manifest: Manifest): P
return promise
.catch(err => Promise.reject(err.statusCode === 409 ? `${fullName} already exists.` : err))
.then(() => log.done(`Published ${fullName}\nYour extension will live at ${getPublishedUrl(name)} (might take a few seconds for it to show up).`));
.then(() => log.done(`Published ${fullName}\nYour extension will live at ${getPublishedUrl(name)} (might take a few minutes for it to show up).`));
})
.catch(err => {
const message = err && err.message || '';