Skip to content

Commit

Permalink
fix indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
rnro committed Dec 4, 2024
1 parent b2fac6b commit e7b437a
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions scripts/generate_matrix.sh
Original file line number Diff line number Diff line change
Expand Up @@ -56,10 +56,10 @@ matrix='{"swift": []}'

## Linux
if [[ "$linux_5_9_enabled" == "true" || "$linux_5_10_enabled" == "true" || "$linux_6_0_enabled" == "true" || \
"$linux_nightly_6_0_enabled" == "true" || "$linux_nightly_main_enabled" == "true" ]]; then
if [[ -z "$linux_command" ]]; then
echo "No linux command defined"; exit 1
fi
"$linux_nightly_6_0_enabled" == "true" || "$linux_nightly_main_enabled" == "true" ]]; then
if [[ -z "$linux_command" ]]; then
echo "No linux command defined"; exit 1
fi
fi


Expand Down Expand Up @@ -115,9 +115,9 @@ fi

## Windows
if [[ "$windows_6_0_enabled" == "true" || "$windows_nightly_6_0_enabled" == "true" || "$windows_nightly_main_enabled" == "true" ]]; then
if [[ -z "$windows_command" ]]; then
echo "No windows command defined"; exit 1
fi
if [[ -z "$windows_command" ]]; then
echo "No windows command defined"; exit 1
fi
fi

if [[ "$windows_6_0_enabled" == "true" ]]; then
Expand Down

0 comments on commit e7b437a

Please sign in to comment.