diff --git a/.gitlab/ci/cibuildwheel_build_deps_before_build_wheel.sh b/.gitlab/ci/cibuildwheel_build_deps_before_build_wheel.sh index ae77600b6e582eeda81ba40853a448a909b2199a..0bdab1bbc2da04cc4bb9255f1d08a7b9748602a8 100644 --- a/.gitlab/ci/cibuildwheel_build_deps_before_build_wheel.sh +++ b/.gitlab/ci/cibuildwheel_build_deps_before_build_wheel.sh @@ -13,14 +13,15 @@ if [[ $AIDGE_DEPENDENCIES == "" ]]; then # case for aidge_ core else for repo in $AIDGE_DEPENDENCIES ; do # case for other projects search_path=$1 - REPO_PATH=$(find $search_path -type d -name $repo \ - -not -path '*install*' \ - -not -path '*.git*' \ - -not -path '*miniconda*' \ - -not -path '*conda*' \ - -not -path '*.local*' \ - -not -path "*lib*" \ + REPO_PATH=$(find $search_path -type d -name $repo \ + -not -path '*install*' \ + -not -path '*.git*' \ + -not -path '*miniconda*' \ + -not -path '*conda*' \ + -not -path '*.local*' \ + -not -path "*lib*" \ -not -path "*/$repo/$repo" \ + -not -path "*/proc/*"Â \ -print -quit) if [[ "$REPO_PATH" == "" ]]; then echo "ERROR : dependency $repo not found in search_path \"$search_path\". ABORTING."