Skip to content

Commit

Permalink
Fixed cross-compiling by replacing wget with curl (#1759)
Browse files Browse the repository at this point in the history
It looks like the default docker image used by cross doesn't have
wget installed. This causes builds to fail. This can be fixed by
switching to curl.

## Issue Addressed
cross-compiling was broken (at least for build-aarch64)

## Proposed Changes
swap wget for curl
  • Loading branch information
ethDreamer committed Oct 11, 2020
1 parent 83ae12a commit e9d5bad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion validator_client/slashing_protection/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ $(OUTPUT_DIR): $(TARBALL)
tar --strip-components=1 -xzf $^ -C $@

$(TARBALL):
wget $(ARCHIVE_URL) -O $@
curl -L -o $@ $(ARCHIVE_URL)

clean-test-files:
rm -rf $(OUTPUT_DIR)
Expand Down

0 comments on commit e9d5bad

Please sign in to comment.