Skip to content

Commit adfde19

Browse files
committed
Replace "curl" with pre-installed "wget"
1 parent 1b7f3ef commit adfde19

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

mk/artifact.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ endif
4343
artifact:
4444
ifeq ($(USE_PREBUILT),1)
4545
@echo "Fetching prebuilt executables in \"rv32emu-prebuilt\"..."
46-
@wget -q https://github.com/sysprog21/rv32emu-prebuilt/releases/download/$(LATEST_RELEASE)/rv32emu-prebuilt.tar.gz -O- | tar -C build -xz
46+
@wget -q --show-progress https://github.com/sysprog21/rv32emu-prebuilt/releases/download/$(LATEST_RELEASE)/rv32emu-prebuilt.tar.gz -O- | tar -C build -xz
4747
else
4848
@$(foreach tb,$(TEST_SUITES), \
4949
git submodule update --init ./tests/$(tb) &&) true

mk/external.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ endef
2222

2323
# $(1): compressed source URL
2424
define download
25-
$(eval _ := $(shell curl --progress-bar -O -L -C - "$(strip $(1))"))
25+
$(eval _ := $(shell wget -q --show-progress --continue "$(strip $(1))"))
2626
endef
2727

2828
# $(1): compressed source(.zip or.gz)

0 commit comments

Comments
 (0)