Skip to content

Commit

Permalink
Update quick-switch.md
Browse files Browse the repository at this point in the history
  • Loading branch information
tomeichlersmith authored Aug 31, 2024
1 parent 939b004 commit 8358171
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions src/developing/quick-switch.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,23 @@ printf '\neval "$(just --completions bash)"\n' >> ~/.bashrc
The `denv` install script attempts to help you update your `~/.bashrc`
so that `~/.local/bin` is in your `PATH` and discoverable by `bash` as
a program, but you may need to update your `PATH` manually.

~~~admonish warning title="No justfile found"
While the `justfile` defining our shared configuring, building,
testing, etc recipes is on `trunk`, it may not be on the branch you
are developing on.
There are two solutions to this:
1. Update your branch to be based off the new `trunk`.
```
git switch trunk
git pull
git switch -
git rebase trunk
```
2. Just use `denv` directly in place of `ldmx`.
```
denv cmake -B build -S .
denv cmake --build build --target install
# and most of the others
```
~~~

0 comments on commit 8358171

Please sign in to comment.