From 2d8dc608e8463cf9e1d3d8cbd5fa2c22e457a71f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=81=93=E5=8C=96=E5=B8=AB?= <645907+wraith13@users.noreply.github.com> Date: Thu, 19 Dec 2019 14:14:01 +0900 Subject: [PATCH] Modifying messages to match the current situation I know it was a few seconds before. But now it is a few minutes. --- src/publish.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/publish.ts b/src/publish.ts index 8b4b406..3c7d726 100644 --- a/src/publish.ts +++ b/src/publish.ts @@ -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 || '';