We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
flet create
1 parent 29f2c19 commit fa77055Copy full SHA for fa77055
sdk/python/packages/flet/src/flet/cli/commands/create.py
@@ -65,9 +65,10 @@ def handle(self, options: argparse.Namespace) -> None:
65
defaults=True,
66
) as worker:
67
worker.run_copy()
68
- print(Fore.LIGHTGREEN_EX + "\nDone. Now run:\n")
+ print(Fore.LIGHTGREEN_EX + "Done. Now run:")
69
print(Style.RESET_ALL)
70
- print(Fore.CYAN + "cd", end=" ")
71
- print(Fore.WHITE + project_name, end="\n")
+ if options.output_directory != ".":
+ print(Fore.CYAN + "cd", end=" ")
72
+ print(Fore.WHITE + project_name, end="\n")
73
print(Fore.CYAN + "flet run")
74
0 commit comments