Fix u-c filter regex

Change-Id: Ic2de45a22de68d4c7f3aa8f88a45a4e5e14fca7b
This commit is contained in:
Jonathan Rosser 2021-03-30 10:14:25 +01:00
parent 95ef2ec94f
commit 89089cc288

View File

@ -51,7 +51,7 @@
name: "python_venv_build"
vars:
venv_python_executable: "{{ horizon_venv_python_executable }}"
venv_build_constraints: "{{ _u_c_contents.content.split('\n') | reject('match', '[horizon=*]') | list }}"
venv_build_constraints: "{{ _u_c_contents.content.split('\n') | reject('match', '^horizon=') | list }}"
venv_build_distro_package_list: "{{ horizon_devel_distro_packages }}"
venv_install_destination_path: "{{ horizon_bin | dirname }}"
venv_pip_install_args: "{{ horizon_pip_install_args }}"
@ -175,4 +175,4 @@
with_items: "{{ found_panels.files }}"
notify:
- Compile messages
- Restart apache2
- Restart apache2