From 8f8ee64b678544b290ec13a3c6d69927ed88d0af Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Fri, 25 Aug 2023 18:43:52 +0200 Subject: [PATCH] ci: Escape parentheses in dependencies Newer versions of the freedesktop template no longer do the escaping for us. Part-of: --- .gitlab-ci.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index ab71c46c4..70a3a7817 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -55,11 +55,11 @@ workflow: nodejs npm meson - pkgconfig(gobject-introspection-1.0) - pkgconfig(gio-2.0) - pkgconfig(gio-unix-2.0) - pkgconfig(gnome-autoar-0) - pkgconfig(json-glib-1.0) + 'pkgconfig(gobject-introspection-1.0)' + 'pkgconfig(gio-2.0)' + 'pkgconfig(gio-unix-2.0)' + 'pkgconfig(gnome-autoar-0)' + 'pkgconfig(json-glib-1.0)' FDO_DISTRIBUTION_EXEC: | # For static analysis with eslint npm install -g eslint@^8.0.0 eslint-plugin-jsdoc@^46.0.0 &&