Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 0 additions & 25 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -194,30 +194,6 @@ function check_deps() {
fi
}

#######################################
# Basic setup for upgrading the virtual envionment tools and
# building the FIREWHEEL whl file.
# Arguments:
# None
# Globals:
# PIP_ARGS
# PYTHON_BIN
#######################################
function install_firewheel_generic() {
if ! ${PYTHON_BIN} -m pip install ${PIP_ARGS} build; then
err "FIREWHEEL setup failed to pip install 'build'."
err "Consult the pip error logs, and verify network connectivity. Aborting."
exit 1
fi

if ! ${PYTHON_BIN} -m build; then
err "FIREWHEEL setup failed to build the source distribution and wheel."
err "Consult the error logs, and verify network connectivity. Aborting."
exit 1
fi

}

#######################################
# Installing the FIREWHEEL package with standard dependencies.
# Arguments:
Expand Down Expand Up @@ -251,7 +227,6 @@ function install_firewheel() {
#######################################
function install_firewheel_development() {
local clone="$1"
install_firewheel_generic

# Install the development version.
if [[ $clone -eq 0 ]]; then
Expand Down
Loading