mirror of
https://github.com/angular/angular.git
synced 2026-09-14 13:54:52 +08:00
82cc576e6f
Use pnpm instead of yarn as the package manager and interaction tool for the repo PR Close #62924
9 lines
221 B
Plaintext
Executable File
9 lines
221 B
Plaintext
Executable File
set +e
|
|
|
|
pnpm --silent ng-dev commit-message pre-commit-validate --file $1 2>/dev/null
|
|
if [ $? -ne 0 ]; then
|
|
echo "WARNING: failed to run commit message validation (ng-dev commit-mesage pre-commit-validate)"
|
|
fi
|
|
|
|
exit 0;
|