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

readme: fix the path

This commit is contained in:
Alex Medvednikov 2019-06-23 01:08:18 +02:00 committed by GitHub
parent b1553449d8
commit e3b992165c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -59,12 +59,12 @@ cc -w -o vc v.c # Build it with Clang or GCC
./vc -o v . # Use the resulting V binary to build V from V source
```
That's it! Now you have a V executable at `~/v/compiler/v`.
That's it! Now you have a V executable at `~/code/v/compiler/v`.
You can create a symlink so that it's globally available:
```
sudo ln -s $HOME/v/compiler/v /usr/local/bin/v
sudo ln -s $HOME/code/v/compiler/v /usr/local/bin/v
```
### Windows