Skip to content
This repository has been archived by the owner on Apr 6, 2022. It is now read-only.

Commit

Permalink
Parsed incorrect argument
Browse files Browse the repository at this point in the history
  • Loading branch information
rk0cc committed Nov 1, 2021
1 parent 24688c0 commit eb9d5b3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/dart.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- name: Download library
run: curl https://github.com/rk0cc/hson/releases/download/1.0.0-action/hson_linux_amd64.zip --output hson.zip
- name: Run unzip
run: 7z x hson.zip
run: 7z e hson.zip
- name: Rename library and delete unused file
run: mv hson_linux_amd64.so hson.so && rm hson.zip && rm hson_linux_amd64.h
- name: Setup Dart
Expand Down Expand Up @@ -53,7 +53,7 @@ jobs:
- name: Download library
run: C:\msys64\usr\bin\wget.exe -O hson.zip https://github.com/rk0cc/hson/releases/download/1.0.0-action/hson_win_amd64.zip
- name: Run unzip
run: 7z x hson.zip
run: 7z e hson.zip
- name: Rename library and delete unused file
run: ren hson_win_amd64.dll hson.dll && del hson.zip && del hson_win_amd64.h
- name: Setup Dart
Expand All @@ -79,7 +79,7 @@ jobs:
- name: Download library
run: curl https://github.com/rk0cc/hson/releases/download/1.0.0-action/hson_macos_amd64.zip --output hson.zip
- name: Run unzip
run: 7z x hson.zip
run: 7z e hson.zip
- name: Rename library and delete unused file
run: mv hson_macos_amd64.dylib hson.dylib && rm hson.zip && rm hson_macos_amd64.h
- name: Setup Dart
Expand Down

0 comments on commit eb9d5b3

Please sign in to comment.