mirror of
https://github.com/GitJournal/GitJournal.git
synced 2025-07-19 20:28:23 +08:00
11 lines
247 B
Bash
Executable File
11 lines
247 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -eux
|
|
|
|
wget -O flutter.zip https://storage.googleapis.com/flutter_infra_release/releases/stable/macos/flutter_macos_2.2.3-stable.zip
|
|
unzip flutter.zip
|
|
export PATH="$PATH:$(pwd)/flutter/bin"
|
|
|
|
flutter precache
|
|
flutter doctor
|