Skip to content

Commit

Permalink
ci: Fix tar command to unpack flutter engine
Browse files Browse the repository at this point in the history
also made wget less verbose
  • Loading branch information
iamsergio committed Apr 11, 2024
1 parent 47bb87d commit ea635d2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/flutter-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ jobs:
# Chose engine from https://github.com/ardera/flutter-ci/releases
- name: Download flutter engine
run: |
wget https://github.com/ardera/flutter-ci/releases/download/engine%2Fa794cf2681c6c9fe7b260e0e84de96298dc9c18b/x64-generic.tar.xz
tar xcf x64-generic.tar.xz -C flutter_engine
wget --no-verbose https://github.com/ardera/flutter-ci/releases/download/engine%2Fa794cf2681c6c9fe7b260e0e84de96298dc9c18b/x64-generic.tar.xz
tar xvf x64-generic.tar.xz -C flutter_engine
cd flutter_engine
mkdir dbg rel
cp libflutter_engine.so.debug dbg/libflutter_engine.so
Expand Down

0 comments on commit ea635d2

Please sign in to comment.