This is an automated email from the ASF dual-hosted git repository.

kou pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow.git


The following commit(s) were added to refs/heads/master by this push:
     new 643f420  ARROW-11547: [Packaging][Conda][Drone] Fix undefined variable 
error
643f420 is described below

commit 643f4201edcdf5bf57cc06f23add9be29b747fbc
Author: Sutou Kouhei <[email protected]>
AuthorDate: Mon Feb 8 09:06:39 2021 +0900

    ARROW-11547: [Packaging][Conda][Drone] Fix undefined variable error
    
    Closes #9441 from kou/packaging-conda-drone
    
    Authored-by: Sutou Kouhei <[email protected]>
    Signed-off-by: Sutou Kouhei <[email protected]>
---
 dev/tasks/conda-recipes/build_steps.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev/tasks/conda-recipes/build_steps.sh 
b/dev/tasks/conda-recipes/build_steps.sh
index a19a312..8f1743f 100755
--- a/dev/tasks/conda-recipes/build_steps.sh
+++ b/dev/tasks/conda-recipes/build_steps.sh
@@ -40,7 +40,7 @@ conda build \
     --clobber-file "${CI_SUPPORT}/clobber_${CONFIG}.yaml" \
     --output-folder "${output_dir}"
 
-if [ ! -z "${R_CONFIG}" ]; then
+if [ ! -z "${R_CONFIG:-}" ]; then
   conda build \
       "${FEEDSTOCK_ROOT}/r-arrow" \
       -m "${CI_SUPPORT}/r/${R_CONFIG}.yaml" \

Reply via email to