Skip to content

Commit 49787d0

Browse files
chore: Improve download message clarity during CLI upgrade (#998)
Update the download message from "Downloading actor/apify..." to "Downloading `actor`/`apify` binary of the Apify CLI..." to better explain what is being downloaded during the upgrade process. Co-authored-by: Claude <noreply@anthropic.com>
1 parent 6c44808 commit 49787d0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/commands/cli-management/upgrade.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ export class UpgradeCommand extends ApifyCommand<typeof UpgradeCommand> {
287287
const cliName = asset.name.split('-')[0];
288288
const filePath = join(bundleDirectory, cliName);
289289

290-
info({ message: `Downloading ${cliName}...` });
290+
info({ message: `Downloading \`${cliName}\` binary of the Apify CLI...` });
291291

292292
const res = await fetch(asset.browser_download_url, { headers: { 'User-Agent': USER_AGENT } });
293293

0 commit comments

Comments
 (0)