Skip to content

Commit

Permalink
ci: Call build.sh via bash explicitly (#4572)
Browse files Browse the repository at this point in the history
/bin/bash, referenced in shebang does not exist on nix on ci.
  • Loading branch information
Serhii Tatarintsev authored Dec 14, 2023
1 parent 320b8be commit 41b94e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nix/all-engines.nix
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ in

buildPhase = ''
cd query-engine/query-engine-wasm
HOME=$(mktemp -dt wasm-pack-home-XXXX) WASM_BUILD_PROFILE=${profile} ./build.sh
HOME=$(mktemp -dt wasm-pack-home-XXXX) WASM_BUILD_PROFILE=${profile} bash ./build.sh
'';

installPhase = ''
Expand Down

0 comments on commit 41b94e3

Please sign in to comment.