Skip to content

Commit b5be10b

Browse files
committed
fix(update-vscode): add --no-verify for commit line
2 parents 65eab75 + 116fe49 commit b5be10b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

ci/dev/update-vscode.sh

+2-1
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,8 @@ main() {
108108
echo "Note: this is intentional"
109109
echo "If we don't do this, code review is impossible."
110110
echo -e "For more info, see docs: docs/CONTRIBUTING.md#updating-vs-code\n"
111-
git add . && git commit -am "chore(vscode): update to $VSCODE_EXACT_VERSION"
111+
# Use --no-verify otherwise this will fail due to husky pre-commit hooks
112+
git add . && git commit -am "chore(vscode): update to $VSCODE_EXACT_VERSION" --no-verify
112113
113114
# Note: we can't open a draft PR unless their are changes.
114115
# Hence why we do this after the subtree update.

0 commit comments

Comments
 (0)