Skip to content

Commit

Permalink
fix: Change path for mv libcairo_native
Browse files Browse the repository at this point in the history
Commit cfe157b in
rdr/add-native-runtime added a WORKDIR /app for the ci dockerfile, so we
must update the path where we move libcairo_native_runtime.a to
crates/blockifier/.
  • Loading branch information
PearsonWhite committed Oct 14, 2024
1 parent fc9b733 commit bc362af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/dependencies.sh
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ function compile_cairo_native_runtime() {
cargo build -p cairo-native-runtime --release --all-features --quiet
popd || exit 1

mv ./cairo_native/target/release/libcairo_native_runtime.a ./crates/blockifier/libcairo_native_runtime.a
mv ./cairo_native/target/release/libcairo_native_runtime.a ./sequencer/crates/blockifier/libcairo_native_runtime.a
rm -rf ./cairo_native
}

Expand Down

0 comments on commit bc362af

Please sign in to comment.