chore(justfile): set PATH user agnostic
Some checks failed
continuous-integration/drone/push Build is failing
Some checks failed
continuous-integration/drone/push Build is failing
This commit is contained in:
parent
85e9d40f79
commit
264a585d44
2 changed files with 4 additions and 1 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -48,3 +48,4 @@ notes.md
|
||||||
|
|
||||||
# Do NOT commit these — they are local to the dev machine
|
# Do NOT commit these — they are local to the dev machine
|
||||||
.pipeline/
|
.pipeline/
|
||||||
|
.claude/
|
||||||
|
|
|
||||||
4
Justfile
4
Justfile
|
|
@ -1,9 +1,11 @@
|
||||||
set dotenv-load := true
|
set dotenv-load := true
|
||||||
set export := true
|
set export := true
|
||||||
|
|
||||||
|
# Non-interactive shells do not source .bashrc,
|
||||||
# PATH includes asdf shims so that mix / elixir / iex resolve without per-shell
|
# PATH includes asdf shims so that mix / elixir / iex resolve without per-shell
|
||||||
# `source ~/.asdf/asdf.sh`. Recipes inherit this via `set export := true`.
|
# `source ~/.asdf/asdf.sh`. Recipes inherit this via `set export := true`.
|
||||||
PATH := "/root/.asdf/shims:/root/.asdf:/root/.local/bin:/usr/local/bin:/usr/bin:/bin"
|
home := env_var('HOME')
|
||||||
|
PATH := home + "/.asdf/shims:" + home + "/.asdf:" + home + "/.local/bin:/usr/local/bin:/usr/bin:/bin"
|
||||||
|
|
||||||
MIX_QUIET := "1"
|
MIX_QUIET := "1"
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue