Skip to content

Commit e0c5cc5

Browse files
nightly build changes except 313
1 parent 38702e5 commit e0c5cc5

File tree

1 file changed

+4
-2
lines changed
  • .ci/docker/manywheel/build_scripts

1 file changed

+4
-2
lines changed

.ci/docker/manywheel/build_scripts/build.sh

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,10 @@ yum -y install bzip2 make git patch unzip bison yasm diffutils \
3939
${PYTHON_COMPILE_DEPS}
4040

4141
# Install newest autoconf
42-
mkdir -p build-aux
43-
cd build-aux || mkdir -p build-aux && cd build-aux
42+
if [ ! -d "build-aux" ]; then
43+
mkdir -p build-aux
44+
fi
45+
cd build-aux || exit 1
4446
curl -o config.guess -sL http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess;hb=HEAD
4547
curl -o config.sub -sL http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub;hb=HEAD
4648
chmod +x config.guess config.sub

0 commit comments

Comments
 (0)