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.
1 parent 8d415eb commit b5012d8Copy full SHA for b5012d8
genkit-tools/cli/src/commands/start.ts
@@ -36,9 +36,16 @@ export const start = new Command('start')
36
.option('-p, --port <port>', 'port for the Dev UI')
37
.option('-o, --open', 'Open the browser on UI start up')
38
.action(async (options: RunOptions) => {
39
+ const projectRoot = await findProjectRoot();
40
+ if (projectRoot.includes('/.Trash/')) {
41
+ logger.warn(
42
+ 'It appears your current project root is in the trash folder. ' +
43
+ 'Please make sure that you current working directory is correct.'
44
+ );
45
+ }
46
// Always start the manager.
47
let managerPromise: Promise<RuntimeManager> = startManager(
- await findProjectRoot(),
48
+ projectRoot,
49
true
50
);
51
if (!options.noui) {
0 commit comments