chore(justfile): set PATH user agnostic
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
Moritz 2026-05-19 22:12:45 +02:00
parent 85e9d40f79
commit 264a585d44
2 changed files with 4 additions and 1 deletions

1
.gitignore vendored
View file

@ -48,3 +48,4 @@ notes.md
# Do NOT commit these — they are local to the dev machine
.pipeline/
.claude/

View file

@ -1,9 +1,11 @@
set dotenv-load := true
set export := true
# Non-interactive shells do not source .bashrc,
# PATH includes asdf shims so that mix / elixir / iex resolve without per-shell
# `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"