File tree Expand file tree Collapse file tree 1 file changed +12
-12
lines changed
Expand file tree Collapse file tree 1 file changed +12
-12
lines changed Original file line number Diff line number Diff line change @@ -133,18 +133,18 @@ UNIQUE_UNIX_DEPENDENCIES=($(echo "${UNIX_DEPENDENCIES[@]}" | tr ' ' '\n' | sort
133133UNIQUE_ACTIVE_MODULES=($(echo "${ACTIVE_MODULES[@]}" | tr ' ' '\n ' | sort -u | tr '\n ' ' '))
134134UNIQUE_ADDITIONAL_URLS=($(echo "${ADDITIONAL_URLS[@]}" | tr ' ' '\n ' | sort -u | tr '\n ' ' '))
135135
136- # # Update apt-get and install Unix dependencies
137- # if [ ${#UNIQUE_UNIX_DEPENDENCIES[@]} -ne 0 ]; then
138- # sudo apt-get update
139- # for dep in "${UNIQUE_UNIX_DEPENDENCIES[@]}"; do
140- # sudo apt-get install -y "$dep"
141- # done
142- # fi
143-
144- # # Install Python dependencies explicitly using the virtual environment's pip
145- # for dep in "${UNIQUE_PYTHON_DEPENDENCIES[@]}"; do
146- # myenv/bin/python3 -m pip install "$dep"
147- # done
136+ # Update apt-get and install Unix dependencies
137+ if [ ${#UNIQUE_UNIX_DEPENDENCIES[@]} -ne 0 ]; then
138+ sudo apt-get update
139+ for dep in "${UNIQUE_UNIX_DEPENDENCIES[@]}"; do
140+ sudo apt-get install -y "$dep"
141+ done
142+ fi
143+
144+ # Install Python dependencies explicitly using the virtual environment's pip
145+ for dep in "${UNIQUE_PYTHON_DEPENDENCIES[@]}"; do
146+ myenv/bin/python3 -m pip install "$dep"
147+ done
148148
149149# Set execute permissions for additional scripts
150150chmod 777 startup.sh stop.sh
You can’t perform that action at this time.
0 commit comments