mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
Use pnpm instead of yarn as the package manager and interaction tool for the repo PR Close #62924
8 lines
246 B
Text
Executable file
8 lines
246 B
Text
Executable file
set +e
|
|
|
|
pnpm --silent 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;
|