From 945ed5e23b9df058c3e3a174010dd4475b11d2f9 Mon Sep 17 00:00:00 2001
From: Alejandro Lopez Gestoso <alopez@iri.upc.edu>
Date: Mon, 5 Sep 2022 16:42:43 +0200
Subject: [PATCH] Fix no dependencies found

---
 packaging-ci.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/packaging-ci.yml b/packaging-ci.yml
index b6234bc..8828d70 100644
--- a/packaging-ci.yml
+++ b/packaging-ci.yml
@@ -12,7 +12,7 @@
       ##Install dependencies
       #- apt -y install iri-dep1-dev iri-dep2-dev
       # Read dependencies from CMakeLists.txt
-      - DEP=( $(grep -P '[^#]\s+SET\(CPACK_DEBIAN_PACKAGE_DEPENDS\s+"' CMakeLists.txt) )
+      - DEP=( $(grep -P '[^#]\s+SET\(CPACK_DEBIAN_PACKAGE_DEPENDS\s+"' CMakeLists.txt) ) || echo " Package iri-$PACKAGE_NAME-dev without dependencies"
       - declare -a DEP
       - |+
         for ((i=1;i<${#DEP[@]};i+=3))
-- 
GitLab