Skip to content

Commit

Permalink
docs(cli): description says path to the MUD config (#2696)
Browse files Browse the repository at this point in the history
  • Loading branch information
yonadaaa authored Apr 22, 2024
1 parent 3d1d590 commit c3c8fb8
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion packages/cli/src/commands/build.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ const commandModule: CommandModule<Options, Options> = {

builder(yargs) {
return yargs.options({
configPath: { type: "string", desc: "Path to the config file" },
configPath: { type: "string", desc: "Path to the MUD config file" },
profile: { type: "string", desc: "The foundry profile to use" },
});
},
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/src/commands/tablegen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const commandModule: CommandModule<Options, Options> = {

builder(yargs) {
return yargs.options({
configPath: { type: "string", desc: "Path to the config file" },
configPath: { type: "string", desc: "Path to the MUD config file" },
});
},

Expand Down
2 changes: 1 addition & 1 deletion packages/cli/src/commands/trace.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ const commandModule: CommandModule<Options, Options> = {
type: "string",
description: "World contract address. Defaults to the value from worlds.json, based on rpc's chainId",
},
configPath: { type: "string", description: "Path to the config file" },
configPath: { type: "string", description: "Path to the MUD config file" },
profile: { type: "string", description: "The foundry profile to use" },
srcDir: { type: "string", description: "Source directory. Defaults to foundry src directory." },
rpc: { type: "string", description: "json rpc endpoint. Defaults to foundry's configured eth_rpc_url" },
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/src/commands/worldgen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const commandModule: CommandModule<Options, Options> = {

builder(yargs) {
return yargs.options({
configPath: { type: "string", desc: "Path to the config file" },
configPath: { type: "string", desc: "Path to the MUD config file" },
clean: {
type: "boolean",
desc: "Clear the worldgen directory before generating new interfaces (defaults to true)",
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/src/runDeploy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import { WorldDeploy } from "./deploy/common";
import { build } from "./build";

export const deployOptions = {
configPath: { type: "string", desc: "Path to the config file" },
configPath: { type: "string", desc: "Path to the MUD config file" },
printConfig: { type: "boolean", desc: "Print the resolved config" },
profile: { type: "string", desc: "The foundry profile to use" },
saveDeployment: { type: "boolean", desc: "Save the deployment info to a file", default: true },
Expand Down

0 comments on commit c3c8fb8

Please sign in to comment.