From 77b6da23c47e6f47666b069cd662f298a614b892 Mon Sep 17 00:00:00 2001 From: Alexander Medvednikov Date: Fri, 28 Jun 2019 15:09:01 +0200 Subject: [PATCH] README: use curl instead of wget --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1c0eed5454..4e7507398e 100644 --- a/README.md +++ b/README.md @@ -60,7 +60,7 @@ make Or build without make: ```bash # Download the V compiler's source translated to C -wget https://raw.githubusercontent.com/vlang/vc/master/v.c +curl -sO https://raw.githubusercontent.com/vlang/vc/master/v.c cc -std=gnu11 -w -o v v.c # Build it with Clang or GCC ./v -o v . # Use the resulting V binary to build V from V source ./v -o v . # Build the compiler again to make sure it works