diff options
| author | Ahmed Abdelhalim <[email protected]> | 2026-01-24 16:11:40 +0100 |
|---|---|---|
| committer | Ahmed Abdelhalim <[email protected]> | 2026-01-24 16:11:40 +0100 |
| commit | b39722e58c1935f4d92c052cf89c941164150c35 (patch) | |
| tree | c806119725c29b3029ae5952e26c7f6dd76a64d1 /configure.yml | |
| parent | 1f6ff02cde4fcac760873e4b56ff425dd07e201e (diff) | |
Fix PATH environment in testing and playbook to avoid ansible_facts
Diffstat (limited to 'configure.yml')
| -rw-r--r-- | configure.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.yml b/configure.yml index ceb92852..993cd4ff 100644 --- a/configure.yml +++ b/configure.yml @@ -4,7 +4,7 @@ hosts: - archlinux.local environment: - PATH: "{{ ansible_env.HOME }}/.local/bin:{{ ansible_env.PATH }}" + PATH: "{{ '~/.local/bin:$PATH' }}" roles: - role: "locales" - role: "timezone" @@ -41,7 +41,7 @@ hosts: - ubuntu.local environment: - PATH: "{{ ansible_env.HOME }}/.local/bin:{{ ansible_env.PATH }}" + PATH: "{{ '~/.local/bin:$PATH' }}" roles: - role: "locales" - role: "timezone" |
