Skip to content
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.

Commit

Permalink
Fixed whitespace errors
Browse files Browse the repository at this point in the history
  • Loading branch information
lebeg authored May 25, 2018
1 parent 0d7b594 commit 8dd6810
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions ci/docker/runtime_functions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ build_wheel() {
set -ex
pushd .

PYTHON_DIR = ${1:-/work/mxnet/python}
BUILD_DIR = ${2:-/work/build}
PYTHON_DIR=${1:-/work/mxnet/python}
BUILD_DIR=${2:-/work/build}

# build

Expand All @@ -50,8 +50,8 @@ build_wheel() {

# Fix pathing issues in the wheel. We need to move libmxnet.so from the data folder to the
# mxnet folder, then repackage the wheel.
WHEEL = `readlink -f dist/*.whl`
TMPDIR = `mktemp -d`
WHEEL=`readlink -f dist/*.whl`
TMPDIR=`mktemp -d`
unzip -d ${TMPDIR} ${WHEEL}
rm ${WHEEL}
cd ${TMPDIR}
Expand Down

0 comments on commit 8dd6810

Please sign in to comment.