Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
fengzch-das
multibuild
Commits
4d6b73c7
Commit
4d6b73c7
authored
Mar 17, 2020
by
mattip
Browse files
typo PIP_EXE -> PIP_CMD
parent
132d028a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
common_utils.sh
common_utils.sh
+3
-3
No files found.
common_utils.sh
View file @
4d6b73c7
...
@@ -349,21 +349,21 @@ function install_wheel {
...
@@ -349,21 +349,21 @@ function install_wheel {
check_pip
check_pip
if [ -n "
$TEST_DEPENDS
" ]; then
if [ -n "
$TEST_DEPENDS
" ]; then
while read TEST_DEPENDENCY; do
while read TEST_DEPENDENCY; do
$PIP_
EXE
install
$(
pip_opts
)
$@
$TEST_DEPENDENCY
$PIP_
CMD
install
$(
pip_opts
)
$@
$TEST_DEPENDENCY
done <<< "
$TEST_DEPENDS
"
done <<< "
$TEST_DEPENDS
"
fi
fi
check_python
check_python
check_pip
check_pip
$PIP_
EXE
install packaging
$PIP_
CMD
install packaging
local supported_wheels=
$(
$PYTHON_EXE
$MULTIBUILD_DIR
/supported_wheels.py
$wheelhouse
/
*
.whl
)
local supported_wheels=
$(
$PYTHON_EXE
$MULTIBUILD_DIR
/supported_wheels.py
$wheelhouse
/
*
.whl
)
if [ -z "
$supported_wheels
" ]; then
if [ -z "
$supported_wheels
" ]; then
echo "
ERROR: no supported wheels found
"
echo "
ERROR: no supported wheels found
"
exit 1
exit 1
fi
fi
# Install compatible wheel
# Install compatible wheel
$PIP_
EXE
install
$(
pip_opts
)
$@
$supported_wheels
$PIP_
CMD
install
$(
pip_opts
)
$@
$supported_wheels
}
}
function install_run {
function install_run {
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment