Skip to content

Commit

Permalink
better bash split
Browse files Browse the repository at this point in the history
  • Loading branch information
kszucs committed Feb 19, 2019
1 parent 54fc653 commit 0bb07a7
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 7 deletions.
5 changes: 1 addition & 4 deletions ci/travis_script_manylinux.sh
Expand Up @@ -42,10 +42,7 @@ EOF
pushd python/manylinux1

for PYTHON_TUPLE in ${PYTHON_VERSIONS}; do
IFS=","
set -- $PYTHON_TUPLE;
PYTHON_VERSION=$1
UNICODE_WIDTH=$2
IFS="," read PYTHON_VERSION UNICODE_WIDTH <<< $PYTHON_TUPLE

# build the wheels
docker run --shm-size=2g --rm \
Expand Down
3 changes: 0 additions & 3 deletions python/manylinux1/build_arrow.sh
Expand Up @@ -23,9 +23,6 @@
# Build upon the scripts in https://github.com/matthew-brett/manylinux-builds
# * Copyright (c) 2013-2016, Matt Terry and Matthew Brett (BSD 2-clause)

# Build different python versions with various unicode widths
PYTHON_VERSIONS="${PYTHON_VERSIONS:-2.7,16 2.7,32 3.5,16 3.6,16 3.7,16}"

source /multibuild/manylinux_utils.sh

# Quit on failure
Expand Down

0 comments on commit 0bb07a7

Please sign in to comment.