From 1be871e061f3da54d894d4f336f300adbccd5d1a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ra=C3=BAl=20Cumplido?= Date: Mon, 16 Mar 2026 09:59:22 +0100 Subject: [PATCH] GH-49518: [CI] Do not override HOME to empty on build_conda.sh for minimal_build --- python/examples/minimal_build/build_conda.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/python/examples/minimal_build/build_conda.sh b/python/examples/minimal_build/build_conda.sh index 5b39b93b2fd5..3b3d7bd4e3be 100755 --- a/python/examples/minimal_build/build_conda.sh +++ b/python/examples/minimal_build/build_conda.sh @@ -21,10 +21,10 @@ set -e #---------------------------------------------------------------------- # Change this to whatever makes sense for your system -HOME= -MINICONDA=$HOME/miniconda-for-arrow -LIBRARY_INSTALL_DIR=$HOME/local-libs -CPP_BUILD_DIR=$HOME/arrow-cpp-build +WORKDIR=${WORKDIR:-$HOME} +MINICONDA=$WORKDIR/miniconda-for-arrow +LIBRARY_INSTALL_DIR=$WORKDIR/local-libs +CPP_BUILD_DIR=$WORKDIR/arrow-cpp-build ARROW_ROOT=/arrow PYTHON=3.10