mirror of
https://github.com/GitJournal/GitJournal.git
synced 2025-07-15 07:56:11 +08:00
11 lines
245 B
Bash
Executable File
11 lines
245 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -eux
|
|
|
|
wget https://storage.googleapis.com/flutter_infra/releases/stable/macos/flutter_macos_1.22.4-stable.zip
|
|
unzip flutter_macos_1.22.4-stable.zip
|
|
export PATH="$PATH:$(pwd)/flutter/bin"
|
|
|
|
flutter precache
|
|
flutter doctor
|