Skip to content

Commit

Permalink
fix(generate.ts): wrong error message (#601)
Browse files Browse the repository at this point in the history
Change `--asset-path` to `--assetPath`
  • Loading branch information
rbalet authored Jun 7, 2024
1 parent 6b2a5d4 commit b60ec8d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tasks/generate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export async function run(ctx: Context): Promise<OutputAsset[]> {
try {
if (!(await ctx.project.assetDirExists())) {
error(
`Asset directory not found at ${ctx.project.projectRoot}. Use --asset-path to specify a specific directory containing assets`,
`Asset directory not found at ${ctx.project.projectRoot}. Use --assetPath to specify a specific directory containing assets`,
);
return [];
}
Expand Down

0 comments on commit b60ec8d

Please sign in to comment.