README: use curl instead of wget
parent
99a0aa2300
commit
77b6da23c4
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue