mirror of
https://github.com/saltstack/salt-bootstrap.git
synced 2025-04-17 10:10:25 +00:00
fixing typo. --use-pep517 instead of --use-517
This commit is contained in:
parent
78b9d765e9
commit
af44e88261
1 changed files with 2 additions and 2 deletions
|
@ -2832,11 +2832,11 @@ EOM
|
|||
mkdir /tmp/git/deps
|
||||
echoinfo "Downloading Salt Dependencies from PyPi"
|
||||
echodebug "Running '${_pip_cmd} download -d /tmp/git/deps .'"
|
||||
${_pip_cmd} download --use-517 -d /tmp/git/deps . || (echo "Failed to download salt dependencies" && return 1)
|
||||
${_pip_cmd} download --use-pep517 -d /tmp/git/deps . || (echo "Failed to download salt dependencies" && return 1)
|
||||
|
||||
echoinfo "Installing Downloaded Salt Dependencies"
|
||||
echodebug "Running '${_pip_cmd} install --ignore-installed ${_POST_NEON_PIP_INSTALL_ARGS} /tmp/git/deps/*'"
|
||||
${_pip_cmd} install --use-517 --ignore-installed ${_POST_NEON_PIP_INSTALL_ARGS} /tmp/git/deps/* || return 1
|
||||
${_pip_cmd} install --use-pep517 --ignore-installed ${_POST_NEON_PIP_INSTALL_ARGS} /tmp/git/deps/* || return 1
|
||||
rm -f /tmp/git/deps/*
|
||||
|
||||
echoinfo "Building Salt Python Wheel"
|
||||
|
|
Loading…
Add table
Reference in a new issue