Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: just instead make #2585

Merged
merged 2 commits into from
Dec 22, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/src/user/basic_setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,12 +70,12 @@ This will create a directory named youki in the directory you ran the command in

## Installing the source

Once you have cloned the source, you can build it using
Once you have cloned the source, you can build it by [just](https://github.com/casey/just#installation).
bestgopher marked this conversation as resolved.
Show resolved Hide resolved

```console
# go into the cloned directory
$ cd youki
$ make youki-dev # or youki-release
$ just youki-dev # or youki-release
$ ./youki -h # get information about youki command
```

Expand Down Expand Up @@ -123,5 +123,5 @@ $ VAGRANT_VAGRANTFILE=Vagrantfile.root vagrant ssh

# in virtual machine
$ cd youki
$ make youki-dev # or youki-release
$ just youki-dev # or youki-release
```
Loading