From 3bbc619b7969ecb07c1bcd723833bd0a8193fb14 Mon Sep 17 00:00:00 2001 From: Alex Birdsall Date: Tue, 20 Feb 2024 16:27:25 -0800 Subject: [PATCH] Fix syntax errors with bash `if` block --- tools/integrations/manage.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/integrations/manage.sh b/tools/integrations/manage.sh index c90a47c36c88..1133e356cccb 100755 --- a/tools/integrations/manage.sh +++ b/tools/integrations/manage.sh @@ -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