Skip to content

Commit

Permalink
chore(util) avoid unnecessary 'eval' in wasmtime.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
thibaultcha committed Aug 2, 2023
1 parent 131548e commit 471f879
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions util/runtimes/wasmtime.sh
Original file line number Diff line number Diff line change
Expand Up @@ -113,9 +113,9 @@ build_wasmtime() {
fi

RUSTFLAGS="$NGX_BUILD_WASMTIME_RUSTFLAGS" \
eval cargo build \
"${args[@]}" \
--manifest-path crates/c-api/Cargo.toml
cargo build \
${args[@]} \
--manifest-path crates/c-api/Cargo.toml

### install

Expand Down

0 comments on commit 471f879

Please sign in to comment.