From 58169328b1ed3b5c2d47ab917d2f9eca9548c15b Mon Sep 17 00:00:00 2001 From: Aaditya Dhruv Date: Sun, 10 Sep 2023 12:12:28 -0500 Subject: Fix "or" bug in installing wayland/xorg packages The conditional was incorrect, removed quotes to make it work --- src/config/tasks/main.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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" -- cgit