-
Notifications
You must be signed in to change notification settings - Fork 24
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
1 parent
52e0433
commit a64dc80
Showing
4 changed files
with
36 additions
and
6 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
#!/bin/bash | ||
|
||
# Copyright (C) 2023-24 Intel Corporation | ||
# SPDX-License-Identifier: BSD-3-Clause | ||
# | ||
# install_flutter.sh | ||
# GitHub Codespaces setup: Install Flutter SDK following this Dockerfile recipe: | ||
# https://github.com/appleboy/flutter-docker/blob/master/Dockerfile | ||
# or this git area | ||
# https://github.com/yostane/flutter2-desktop | ||
# | ||
# 2024 February 12 | ||
# Author: Desmond Kirkpatrick <[email protected]> | ||
|
||
set -euo pipefail | ||
|
||
wget -O /tmp/flutter_linux.tar.xz https://storage.googleapis.com/flutter_infra_release/releases/stable/linux/flutter_linux_3.16.9-stable.tar.xz | ||
cd /usr/local | ||
sudo tar -xf /tmp/flutter_linux.tar.xz | ||
echo 'export PATH="$PATH:/usr/local/flutter/bin"' >> ~/.bashrc | ||
|
||
rm /tmp/flutter_linux.tar.xz |
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