1
0
mirror of synced 2025-12-19 18:14:56 -05:00

Fix syntax error in tools/bin/manage.sh, used to publish airbyte cdk (#35466)

This commit is contained in:
Alex Birdsall
2024-02-21 11:32:34 -08:00
committed by GitHub
parent 35c73b3f98
commit 602d3ce063

View File

@@ -191,7 +191,7 @@ cmd_publish() {
_error_if_tag_exists "$versioned_image"
# building the connector
if [ "$path" != "airbyte-cdk/python"]
if [ "$path" != "airbyte-cdk/python" ]; then
# The python CDK will already have been built and tested earlier in the github workflow.
cmd_build "$path" "$run_tests"
fi