tensorflow/configure
Yun Peng a4a3a3335b Fix ./configure on Windows (#11775)
* Fix ./configure on Windows

* Disable bitwise_ops_test on Windows
2017-07-27 11:09:24 -07:00

15 lines
231 B
Bash
Executable File

#!/usr/bin/env bash
set -e
set -o pipefail
if [ -z "$PYTHON_BIN_PATH" ]; then
PYTHON_BIN_PATH=$(which python || which python3 || true)
fi
# Set all env variables
"$PYTHON_BIN_PATH" configure.py
echo "Configuration finished"