From fdc1db0e770d2822147ff2c81675be3d6a046cff Mon Sep 17 00:00:00 2001 From: Honza Javorek Date: Wed, 25 Feb 2026 12:02:02 +0100 Subject: [PATCH] make next steps more compatible cd works on all operating systems, but single quotes won't work inside Windows' classic Command Prompt. To make the instructions work on all mainstream operating systems and in all mainstream shells, we should use double quotes. Those work everywhere. --- src/lib/create-utils.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/create-utils.ts b/src/lib/create-utils.ts index 128d49d23..72b973b83 100644 --- a/src/lib/create-utils.ts +++ b/src/lib/create-utils.ts @@ -77,10 +77,10 @@ export function formatCreateSuccessMessage(params: { let message = `āœ… Actor '${actorName}' created successfully!`; if (dependenciesInstalled) { - message += `\n\nNext steps:\n\ncd '${actorName}'\napify run`; + message += `\n\nNext steps:\n\ncd "${actorName}"\napify run`; } else { const installLine = installCommandSuggestion || 'install dependencies with your package manager'; - message += `\n\nNext steps:\n\ncd '${actorName}'\n${installLine}\napify run`; + message += `\n\nNext steps:\n\ncd "${actorName}"\n${installLine}\napify run`; } message += `\n\nšŸ’” Tip: Use 'apify push' to deploy your Actor to the Apify platform\nšŸ“– Docs: https://docs.apify.com/platform/actors/development`;