fix: respect to pipelines dir environment variable in start.sh

This commit is contained in:
Parham Alvani 2024-10-21 15:20:47 +00:00
parent 5c0440ac3f
commit 886d9e6110

View File

@ -115,7 +115,7 @@ if [[ -n "$PIPELINES_URLS" ]]; then
# Split PIPELINES_URLS by ';' and iterate over each path
IFS=';' read -ra ADDR <<< "$PIPELINES_URLS"
for path in "${ADDR[@]}"; do
download_pipelines "$path" "$pipelines_dir"
download_pipelines "$path" "$PIPELINES_DIR"
done
for file in "$pipelines_dir"/*; do