Files
GitJournal/scripts/ios_install_flutter.sh
Vishesh Handa 7f93825855 Bump flutter minor version
Also added docs on what all needs to be bumped
2021-09-22 18:19:40 +02:00

15 lines
360 B
Bash
Executable File

#!/usr/bin/env bash
# SPDX-FileCopyrightText: 2019-2021 Vishesh Handa <me@vhanda.in>
#
# SPDX-License-Identifier: AGPL-3.0-or-later
set -eux
wget -O flutter.zip https://storage.googleapis.com/flutter_infra_release/releases/stable/macos/flutter_macos_2.5.1-stable.zip
unzip flutter.zip
export PATH="$PATH:$(pwd)/flutter/bin"
flutter precache
flutter doctor