-
Notifications
You must be signed in to change notification settings - Fork 3.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
49 additions
and
58 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,8 @@ | ||
[submodule "site-shared"] | ||
path = site-shared | ||
url = https://github.com/dart-lang/site-shared.git | ||
branch = chalin-zsh-0810 | ||
branch = master | ||
[submodule "flutter"] | ||
path = flutter | ||
url = https://github.com/flutter/flutter | ||
branch = beta |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule site-shared
updated
3 files
+17 −7 | tool/before-install.sh | |
+2 −2 | tool/env-set.sh | |
+0 −2 | tool/install.sh |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
#!/usr/bin/env bash | ||
|
||
FLUTTER_ROOT=flutter | ||
FLUTTER_BIN="$FLUTTER_ROOT/bin" | ||
|
||
if [[ ! -e "$FLUTTER_ROOT" ]]; then | ||
echo "ERROR: The ~/flutter git submodule is missing. For initialization instructions, see the repo README." | ||
exit 1; | ||
fi | ||
|
||
source tool/shared/before-install.sh | ||
|
||
travis_fold start before_install.flutter | ||
echo "Refreshing Flutter repo and running doctor:" | ||
( | ||
set -x; | ||
cd flutter; | ||
git checkout beta; | ||
git pull; | ||
bin/flutter doctor; | ||
) | ||
travis_fold end before_install.flutter |
This file was deleted.
Oops, something went wrong.