diff options
author | Aaditya Dhruv <[email protected]> | 2023-09-10 12:12:28 -0500 |
---|---|---|
committer | Aaditya Dhruv <[email protected]> | 2023-09-10 12:12:28 -0500 |
commit | 58169328b1ed3b5c2d47ab917d2f9eca9548c15b (patch) | |
tree | b4b992d2e94ca32813d1b992bc91328f2d15452a | |
parent | f23d1d0658229f7d41b27645bf482277a43c7afe (diff) |
Fix "or" bug in installing wayland/xorg packages
The conditional was incorrect, removed quotes to make it work
-rw-r--r-- | src/config/tasks/main.yaml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/config/tasks/main.yaml b/src/config/tasks/main.yaml index fe93e59..ee7b210 100644 --- a/src/config/tasks/main.yaml +++ b/src/config/tasks/main.yaml @@ -59,4 +59,4 @@ dest: "/home/{{ config.username }}/.config/" backup: yes loop: "{{ config_all }}" - when: "'config.config.install_xorg' or 'config.config.install_wayland'" + when: "config.config.install_xorg or config.config.install_wayland" |