Revision 1b602faee974eb1f0da083e41afd55933b48f1a3 authored by Jessica Janiuk on 11 October 2022, 00:49:33 UTC, committed by Jessica Janiuk on 11 October 2022, 00:56:04 UTC
This reverts commit 3c45f6f33e7a20c460d95203a562e0c056d3dbf7.

PR Close #47726
1 parent ca2fa7a
Raw File
commit-msg
#!/bin/sh
. "$(dirname $0)/_/husky.sh"

set +e

yarn -s 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;
back to top