diff --git a/compare-action/entrypoint.sh b/compare-action/entrypoint.sh index e1c3b99..5f5caa0 100755 --- a/compare-action/entrypoint.sh +++ b/compare-action/entrypoint.sh @@ -32,7 +32,7 @@ if [ -f ${PIPERIDER_WORKSPACE}/requirements.txt ]; then fi # Install the piperider data connectors based on .piperider/config.yml -for datasource_type in "$(yq '.dataSources[].type' ${PIPERIDER_WORKSPACE}/.piperider/config.yml)"; do +for datasource_type in $(yq '.dataSources[].type' ${PIPERIDER_WORKSPACE}/.piperider/config.yml); do case "${datasource_type}" in sqlite) echo "[PipeRider] Skipping sqlite, it is built-in" @@ -85,4 +85,4 @@ echo "uuid=${uuid}" >> $GITHUB_OUTPUT cat ./summary.md >> $GITHUB_STEP_SUMMARY python -m piperider_cli.recipes.github_action attach_comment -popd > /dev/null \ No newline at end of file +popd > /dev/null