From 264a585d44a60e2c5ced5281186551e18945ab1d Mon Sep 17 00:00:00 2001 From: Moritz Date: Tue, 19 May 2026 22:12:45 +0200 Subject: [PATCH] chore(justfile): set PATH user agnostic --- .gitignore | 1 + Justfile | 4 +++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index e177b4d..b9096bd 100644 --- a/.gitignore +++ b/.gitignore @@ -48,3 +48,4 @@ notes.md # Do NOT commit these — they are local to the dev machine .pipeline/ +.claude/ diff --git a/Justfile b/Justfile index db53903..cae8cfb 100644 --- a/Justfile +++ b/Justfile @@ -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"