Skip to content

Commit

Permalink
Merge pull request #23 from InfuseAI/bug-load-wrong-datasource_type
Browse files Browse the repository at this point in the history
Update entrypoint.sh
  • Loading branch information
kentwelcome authored Oct 31, 2023
2 parents 81e1be3 + 342e15d commit efe036b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions compare-action/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -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
popd > /dev/null

0 comments on commit efe036b

Please sign in to comment.