Skip to content

Commit

Permalink
Fix a bug in disabling clang linker
Browse files Browse the repository at this point in the history
  • Loading branch information
HoKim98 committed Oct 8, 2023
1 parent aaad457 commit cb4f148
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,8 @@ jobs:
- name: Disable clang linker
run: >
sed 's/^linker *\=/#\0/g' ./.cargo/config.toml
&& sed 's/^rustflags *\=/#\0/g' ./.cargo/config.toml
sed -i 's/^linker *\=/#\0/g' ./.cargo/config.toml
&& sed -i 's/^rustflags *\=/#\0/g' ./.cargo/config.toml
- name: Replace minio-wasm package into minio
run: sed -i 's/rev *\= *\"1d097f0c9e587efecd0bb27cae4033ec33f510ce\"\,//g' ./Cargo.toml
Expand Down

0 comments on commit cb4f148

Please sign in to comment.