Skip to content

Commit

Permalink
fix: mv lib from root instead of relative path
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 can no longer use a relative path to copy
libcairo_native_runtime.a to crates/blockifier/.
  • Loading branch information
PearsonWhite committed Oct 14, 2024
1 parent fc9b733 commit f2a047c
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 /crates/blockifier/libcairo_native_runtime.a
rm -rf ./cairo_native
}

Expand Down

0 comments on commit f2a047c

Please sign in to comment.