Skip to content

Commit 3da58d0

Browse files
committed
conditional was inverted
1 parent c5b8afb commit 3da58d0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ci_scripts/install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ popd
2525
# Configure the conda environment and put it in the path using the
2626
# provided versions
2727
SCIKIT_LEARN_ARG=""
28-
if [[ -z $SCIKIT_LEARN_VERSION ]]; then
28+
if [[ ! -z $SCIKIT_LEARN_VERSION ]]; then
2929
SCIKIT_LEARN_ARG="scikit-learn=$SCIKIT_LEARN_VERSION"
3030
fi
3131
conda create -n testenv --yes python=$PYTHON_VERSION pip nose \

0 commit comments

Comments
 (0)