Skip to content
Snippets Groups Projects
Commit 9b6a7a7e authored by Thibault Allenet's avatar Thibault Allenet
Browse files

fix loop bash

parent ad906483
No related branches found
No related tags found
No related merge requests found
......@@ -36,13 +36,17 @@ release:pip:ubuntu:
echo "Warning: The project $CI_PROJECT_NAME has no dependency."
DEPS_NAMES_2=()
fi
- echo "DEPS_NAMES_2 = ${DEPS_NAMES[@]}"
- echo "${DEPS_NAMES_2[@]}"
- >
for DEP_NAME in $DEPS_NAMES_2; do
for DEP_NAME in "${DEPS_NAMES_2[@]}"; do
echo "current dep $DEP_NAME"
done
- >
for DEP_NAME in $DEPS_NAMES_2; do
for DEP_NAME in "${DEPS_NAMES[@]}"; do
echo "current dep $DEP_NAME"
done
- >
for DEP_NAME in "${DEPS_NAMES_2[@]}"; do
echo "current dep $DEP_NAME"
cd $DEP_NAME
pip install . -v
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment