...
| equivalent non- |
---|---|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Add |
|
General dev
tips
Since
./dev
always buildsdev
unconditionally before doing anything else, that means there will be a slight delay before your build or test actually begins. Due to caching this pause should never be too long, but if it’s annoying you or you’ve found a way to thrash the cache, you can do:Code Block ./dev build dev
This will place a binary at
bin/dev
and ifbin
is in yourPATH
, you can then omit the leading./
. In this document we’ll always spell./dev
with the leading./
to squash ambiguity and for ease of copy-pasting.
...