1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

README: use curl instead of wget

This commit is contained in:
Alexander Medvednikov 2019-06-28 15:09:01 +02:00 committed by GitHub
parent 99a0aa2300
commit 77b6da23c4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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