From 066c0010997795b71867dca7870ca39376c517ea Mon Sep 17 00:00:00 2001 From: Nicolas Date: Wed, 23 Oct 2024 15:32:27 -0300 Subject: [PATCH] Fix typo --- .github/workflows/build_wazuh_dashboard_with_plugins.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/build_wazuh_dashboard_with_plugins.yml b/.github/workflows/build_wazuh_dashboard_with_plugins.yml index 92efa22d5592..08d2df3377bb 100644 --- a/.github/workflows/build_wazuh_dashboard_with_plugins.yml +++ b/.github/workflows/build_wazuh_dashboard_with_plugins.yml @@ -93,12 +93,11 @@ jobs: steps: - name: Validate inputs run: | - if { [ "${{ inputs.architecture }}" = "amd64" ] || [ "${{ inputs.architecture }}" = "arm64" ]; } && [ "${{ inputs.system }}" = "rpm" ]; then echo "Invalid combination of architecture and system" exit 1 fi - if {[ "${{ inputs.architecture }}" = "x86_64" ] || [ "${{ inputs.architecture }}" = "aarch64" ]; }&& [ "${{ inputs.system }}" = "deb" ]; then + if {[ "${{ inputs.architecture }}" = "x86_64" ] || [ "${{ inputs.architecture }}" = "aarch64" ]; } && [ "${{ inputs.system }}" = "deb" ]; then echo "Invalid combination of architecture and system" exit 1 fi