Skip to content

Commit

Permalink
Fix architecture validation
Browse files Browse the repository at this point in the history
  • Loading branch information
Tostti committed Oct 23, 2024
1 parent 10f41c8 commit e1ea011
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build_wazuh_dashboard_with_plugins.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ jobs:
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
Expand Down

0 comments on commit e1ea011

Please sign in to comment.