From 80bb4dabeeff3dfdce94745fdabd892a6e18e6e6 Mon Sep 17 00:00:00 2001
From: Alan Coleman <alanco@umich.edu>
Date: Wed, 22 Nov 2023 13:41:24 +0000
Subject: [PATCH] Resolve "Remove arrow reinstall"

---
 conan-install.sh | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/conan-install.sh b/conan-install.sh
index 1b85648d7..4298c1d0e 100755
--- a/conan-install.sh
+++ b/conan-install.sh
@@ -25,5 +25,11 @@ fi
 
 mkdir -p "$target_dir" || exit 2
 cd "$target_dir" || exit 3
-conan remove -f arrow
+
+
+
+if [ "${CI_JOB_ID}" ]; then
+  # Temporary fix for the CI which has a broken arrow install
+  conan remove -f arrow
+fi
 conan install -pr corsika8 --build=missing "${DIR}"
-- 
GitLab