diff --git a/tasks/test.yaml b/tasks/test.yaml index 6c17f8910..8d3f7c8d6 100644 --- a/tasks/test.yaml +++ b/tasks/test.yaml @@ -55,7 +55,7 @@ tasks: actions: - cmd: | for package in $(ls src); do - if [[ ! $EXCLUDED_PACKAGES =~ ${package} ]]; then + if [ ! ${EXCLUDED_PACKAGES} =~ ${package} ]; then uds run -f src/${package}/tasks.yaml validate --no-progress fi done