Skip to content

Commit

Permalink
fix if condition syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
tangowithfoxtrot authored Mar 14, 2024
1 parent 25267e7 commit 93a1521
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-rust-cross-platform.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,13 +50,13 @@ jobs:
- name: Build Rust
env:
RUSTFLAGS: "-D warnings"
if: ${{ matrix.settings.target }} != aarch64-unknown-linux-gnu
if: ${{ matrix.settings.target != 'aarch64-unknown-linux-gnu' }}
run: cargo build --target ${{ matrix.settings.target }} --release

- name: Build Rust (aarch64-unknown-linux-gnu)
env:
RUSTFLAGS: "-D warnings"
if: ${{ matrix.settings.target }} == aarch64-unknown-linux-gnu
if: ${{ matrix.settings.target == 'aarch64-unknown-linux-gnu' }}
run: cross build --target ${{ matrix.settings.target }} --release

- name: Upload Artifact
Expand Down
2 changes: 0 additions & 2 deletions crates/bitwarden-c/Cross.toml

This file was deleted.

0 comments on commit 93a1521

Please sign in to comment.