We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 65eab75 + 116fe49 commit b5be10bCopy full SHA for b5be10b
ci/dev/update-vscode.sh
@@ -108,7 +108,8 @@ main() {
108
echo "Note: this is intentional"
109
echo "If we don't do this, code review is impossible."
110
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"
+ # 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
113
114
# Note: we can't open a draft PR unless their are changes.
115
# Hence why we do this after the subtree update.
0 commit comments