Skip to content

Commit

Permalink
Update error log
Browse files Browse the repository at this point in the history
  • Loading branch information
L-Qun committed Jan 15, 2025
1 parent 4ef842d commit aa2e41f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rush-plugins/rush-link-project-plugin/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import { lookUpPackageJson, logger } from './utils';
const targetJsonPath: string = path.resolve(targetPath, PACKAGE_JSON);

if (!fs.existsSync(targetJsonPath)) {
throw new Error(`Can not find ${PACKAGE_JSON} in the path ${argv.path}`);
throw new Error(`Cannot find ${PACKAGE_JSON} in the path ${argv.path}`);
}

const originJsonPath: string | undefined = lookUpPackageJson(RUSH_EVOKE_FOLDER);
Expand Down

0 comments on commit aa2e41f

Please sign in to comment.