Skip to content

Commit 708d7fb

Browse files
authored
Fix the pre-submit for the flutter-intellij project (#7938)
With the current version of `git` used by the presubmits an issue is being hit. See #7937 for context
1 parent 7ca1ac3 commit 708d7fb

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/presubmit.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
pull_request:
1010
push:
1111
branches:
12-
- master
12+
- main
1313
workflow_dispatch:
1414

1515
permissions:

.github/workflows/presubmit.yaml.template

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
pull_request:
88
push:
99
branches:
10-
- master
10+
- main
1111
workflow_dispatch:
1212

1313
permissions:

tool/github.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ set -e
1010
export JAVA_HOME=$JAVA_HOME_17_X64
1111

1212
# Clone and configure Flutter to the latest stable release
13-
git clone --depth 1 -b stable --single-branch https://github.com/flutter/flutter.git ../flutter
13+
git clone --depth 1 https://github.com/flutter/flutter.git ../flutter
1414
export PATH="$PATH":`pwd`/../flutter/bin:`pwd`/../flutter/bin/cache/dart-sdk/bin
1515
flutter config --no-analytics
1616
flutter doctor

0 commit comments

Comments
 (0)