We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5054f1c commit 40161bfCopy full SHA for 40161bf
1 file changed
src/lib/create-utils.ts
@@ -77,10 +77,10 @@ export function formatCreateSuccessMessage(params: {
77
let message = `✅ Actor '${actorName}' created successfully!`;
78
79
if (dependenciesInstalled) {
80
- message += `\n\nNext steps:\n\ncd '${actorName}'\napify run`;
+ message += `\n\nNext steps:\n\ncd "${actorName}"\napify run`;
81
} else {
82
const installLine = installCommandSuggestion || 'install dependencies with your package manager';
83
- message += `\n\nNext steps:\n\ncd '${actorName}'\n${installLine}\napify run`;
+ message += `\n\nNext steps:\n\ncd "${actorName}"\n${installLine}\napify run`;
84
}
85
86
message += `\n\n💡 Tip: Use 'apify push' to deploy your Actor to the Apify platform\n📖 Docs: https://docs.apify.com/platform/actors/development`;
0 commit comments