We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3e79a84 commit b086102Copy full SHA for b086102
ci/dev/update-vscode.sh
@@ -104,7 +104,9 @@ main() {
104
echo "Note: this is intentional"
105
echo "If we don't do this, code review is impossible."
106
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"
+ # 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
110
111
# Note: we can't open a draft PR unless their are changes.
112
# Hence why we do this after the subtree update.
0 commit comments