From e3b992165c0baf36677af77e1b016707cfae1c6a Mon Sep 17 00:00:00 2001 From: Alex Medvednikov Date: Sun, 23 Jun 2019 01:08:18 +0200 Subject: [PATCH] readme: fix the path --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 097c95bb8f..9f1a589b0e 100644 --- a/README.md +++ b/README.md @@ -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