"openmmapi/src/NoseHooverChain.cpp" did not exist on "7a02c59b7f94c26c7996c2a0c4ef98d5fa4af7cd"
Commit 14ee2c23 authored by Matthew Brett's avatar Matthew Brett
Browse files

Fix test for presence of function

parent 9dd2342f
......@@ -113,7 +113,7 @@ function build_wheel_cmd {
local repo_dir=${2:-$REPO_DIR}
[ -z "$repo_dir" ] && echo "repo_dir not defined" && exit 1
local wheelhouse=$(abspath ${WHEEL_SDIR:-wheelhouse})
if [ -n $(is_function "pre_build") ]; then pre_build; fi
if [ -n "$(is_function "pre_build")" ]; then pre_build; fi
if [ -n "$BUILD_DEPENDS" ]; then
pip install $(pip_opts) $BUILD_DEPENDS
fi
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment