Skip to content

Commit b086102

Browse files
committed
fix: add no-verify for commit line
1 parent 3e79a84 commit b086102

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

ci/dev/update-vscode.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,9 @@ main() {
104104
echo "Note: this is intentional"
105105
echo "If we don't do this, code review is impossible."
106106
echo -e "For more info, see docs: docs/CONTRIBUTING.md#updating-vs-code\n"
107-
git add . && git commit -am "chore(vscode): update to $VSCODE_EXACT_VERSION"
107+
# We need --no-verify to skip the husky pre-commit hook
108+
# which fails because of the merge conflicts
109+
git add . && git commit -am "chore(vscode): update to $VSCODE_EXACT_VERSION" --no-verify
108110
109111
# Note: we can't open a draft PR unless their are changes.
110112
# Hence why we do this after the subtree update.

0 commit comments

Comments
 (0)