From faa506e59dbd38eb3a1c8339abe688cdc8b804d5 Mon Sep 17 00:00:00 2001 From: Christoph Herzog Date: Fri, 24 Feb 2023 01:26:39 +0100 Subject: [PATCH] ci: Fix build.yaml workflow Syntax error in bash script... --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 2af15b41ca1..12dd59a194d 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -244,8 +244,8 @@ jobs: rustup override unset - name: Build Wasmer with minimal "sys" features run: | - cargo build --no-default-features --features="sys" --manifest-path=lib/api/Cargo.toml && - cargo build --manifest-path=lib/cache/Cargo.toml && + cargo build --no-default-features --features="sys" --manifest-path=lib/api/Cargo.toml + cargo build --manifest-path=lib/cache/Cargo.toml - name: Dist if: matrix.build != 'macos-arm64' run: |