mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
husky v9 simplified its setup, see `How to migrate` in https://github.com/typicode/husky/releases/tag/v9.0.1 PR Close #54315
8 lines
240 B
Text
Executable file
8 lines
240 B
Text
Executable file
set +e
|
|
|
|
yarn -s ng-dev commit-message restore-commit-message-draft $1 $2 2>/dev/null
|
|
if [ $? -ne 0 ]; then
|
|
echo "WARNING: failed to attempt to restore commit message draft (ng-dev commit-message restore-commit-message-draft)"
|
|
fi
|
|
|
|
exit 0;
|