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 b086102 commit 6f638f1Copy full SHA for 6f638f1
ci/dev/update-vscode.sh
@@ -85,7 +85,9 @@ main() {
85
if [[ -z $(git ls-remote --heads origin "$CURRENT_BRANCH") ]]; then
86
echo "Doesn't look like you've pushed this branch to remote"
87
echo -e "Pushing now using: git push origin $CURRENT_BRANCH\n"
88
- git push origin "$CURRENT_BRANCH"
+ # Note: we need to set upstream as well or the gh pr create step will fail
89
+ # See: https://github.com/cli/cli/issues/575
90
+ git push -u origin "$CURRENT_BRANCH"
91
fi
92
93
echo "Going to try to update vscode for you..."
0 commit comments