Skip to content

Commit

Permalink
Merge branch 'main' into fix-10464
Browse files Browse the repository at this point in the history
  • Loading branch information
atsansone committed May 16, 2024
2 parents 4e19741 + c8f1d26 commit 24fdbd7
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions src/_includes/docs/install/flutter/download.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,19 +30,21 @@
{% assign prompt='$' %}
{% assign dirdl='~/Downloads/' %}
{% capture uz -%}
{{prompt}} {{unzip}} {{dirdl}}flutter_sdk_v1.0.0.zip -d {{path}}
{{prompt}} {{unzip}} {{dirdl}}flutter_sdk_v1.0.0.zip \
-d {{path}}
{%- endcapture %}
{% else -%}
{% assign diroptions='`/usr/bin/`' %}
{% assign dirinstall='`/usr/bin/`' %}
{% assign unzip='unzip' %}
{% assign unzip='tar' %}
{% assign path='/usr/bin/' %}
{% assign flutter-path='/usr/bin/flutter' %}
{% assign terminal='a shell' %}
{% assign prompt='$' %}
{% assign dirdl='~/Downloads/' %}
{% capture uz -%}
{{prompt}} {{dirdl}}flutter_sdk_v1.0.0.zip {{path}}
{{prompt}} {{unzip}} -xf {{dirdl}}flutter_sdk_v1.0.0.zip \
-C {{path}}
{%- endcapture %}
{% endcase -%}

Expand Down Expand Up @@ -84,7 +86,7 @@ then extract the SDK.
{% render docs/install/admonitions/install-paths.md %}
{% endif %}

1. Extract the zip file into the directory you want to store the Flutter SDK.
1. Extract the file into the directory you want to store the Flutter SDK.

```console
{{uz}}
Expand Down

0 comments on commit 24fdbd7

Please sign in to comment.