From 302645cba01dd6bed8b89f70cd39b81c8a5f796c Mon Sep 17 00:00:00 2001 From: whoami Date: Wed, 26 Jun 2019 14:37:28 +0300 Subject: [PATCH] Makefile curl `curl` should be used in Makefile as more common and lightweight --- compiler/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/Makefile b/compiler/Makefile index 0fee7073e9..0244e1a509 100644 --- a/compiler/Makefile +++ b/compiler/Makefile @@ -5,7 +5,7 @@ v: v.c ./v -o v . v.c: - wget https://raw.githubusercontent.com/vlang/vc/master/v.c + curl -Os https://raw.githubusercontent.com/vlang/vc/master/v.c test: v find .. -name '*_test.v' | xargs ./v {}