Skip to content

Commit b60ec8d

Browse files
authored
fix(generate.ts): wrong error message (#601)
Change `--asset-path` to `--assetPath`
1 parent 6b2a5d4 commit b60ec8d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/tasks/generate.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export async function run(ctx: Context): Promise<OutputAsset[]> {
1414
try {
1515
if (!(await ctx.project.assetDirExists())) {
1616
error(
17-
`Asset directory not found at ${ctx.project.projectRoot}. Use --asset-path to specify a specific directory containing assets`,
17+
`Asset directory not found at ${ctx.project.projectRoot}. Use --assetPath to specify a specific directory containing assets`,
1818
);
1919
return [];
2020
}

0 commit comments

Comments
 (0)