From 6ebca8439e7b3373848faeff44a3d739e962c439 Mon Sep 17 00:00:00 2001 From: RichardG867 Date: Tue, 25 Oct 2022 21:22:36 -0300 Subject: [PATCH] Jenkins: Small semantics change on the MacPorts dependency upgrade fix --- .ci/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.ci/build.sh b/.ci/build.sh index 58d5e50c7..38cd36c0c 100644 --- a/.ci/build.sh +++ b/.ci/build.sh @@ -605,7 +605,7 @@ then sudo "$macports/bin/port" install $(cat .ci/dependencies_macports.txt) 2>&1 | tee macports.log # Stop if no port version activation errors were found. - stuck_dep=$(grep " cannot be built while another version of " macports.log | cut -d" " -f2) + stuck_dep=$(grep " cannot be built while another version of " macports.log | cut -d" " -f10) [ -z $stuck_dep ] && break # Deactivate the stuck dependency and try again.