Skip to content

Commit 6a013c4

Browse files
fix makefile
1 parent 357b0d7 commit 6a013c4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -333,11 +333,11 @@ bsc-docker-build-push-nightly: ## Build and push cross-arch Docker image tagged
333333
define bsc_docker_build_push
334334
$(MAKE) bsc-build-x86_64-unknown-linux-gnu
335335
mkdir -p $(BIN_DIR)/amd64
336-
cp $(BUILD_PATH)/x86_64-unknown-linux-gnu/$(PROFILE)/bsc-reth $(BIN_DIR)/amd64/bsc-reth
336+
cp $(CARGO_TARGET_DIR)/x86_64-unknown-linux-gnu/$(PROFILE)/bsc-reth $(BIN_DIR)/amd64/bsc-reth
337337

338338
$(MAKE) bsc-build-aarch64-unknown-linux-gnu
339339
mkdir -p $(BIN_DIR)/arm64
340-
cp $(BUILD_PATH)/aarch64-unknown-linux-gnu/$(PROFILE)/bsc-reth $(BIN_DIR)/arm64/bsc-reth
340+
cp $(CARGO_TARGET_DIR)/aarch64-unknown-linux-gnu/$(PROFILE)/bsc-reth $(BIN_DIR)/arm64/bsc-reth
341341

342342
docker buildx build --file ./DockerfileBsc.cross . \
343343
--platform linux/amd64,linux/arm64 \

0 commit comments

Comments
 (0)