Skip to content

Commit 9990153

Browse files
committed
cli start work
1 parent 9a36492 commit 9990153

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

packages/cli/src/commands/start.ts

-1
Original file line numberDiff line numberDiff line change
@@ -587,7 +587,6 @@ export const start = new Command()
587587
"-c, --configure",
588588
"Reconfigure services and AI models (skips using saved configuration)",
589589
)
590-
.option("--dev", "Start with development settings")
591590
.option(
592591
"--character <character>",
593592
"Path or URL to character file to use instead of default",

packages/cli/src/utils/registry/index.ts

-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ import { REGISTRY_URL } from "./constants";
2323
const ELIZA_DIR = path.join(os.homedir(), '.eliza');
2424
const REGISTRY_SETTINGS_FILE = path.join(ELIZA_DIR, 'registrysettings.json');
2525
const ENV_FILE = path.join(ELIZA_DIR, '.env');
26-
const REGISTRY_CACHE_FILE = path.join(ELIZA_DIR, 'registry-cache.json');
2726

2827
const REQUIRED_ENV_VARS = ['GITHUB_TOKEN'] as const;
2928
const REQUIRED_SETTINGS = ['defaultRegistry'] as const;

0 commit comments

Comments
 (0)