Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Ponchale committed Oct 13, 2023
1 parent cf3922b commit 7b0efdb
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/windows-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -153,10 +153,10 @@ jobs:
- name: Setup 🪛
run: |
mkdir -p ~/win-cross
if [[ $GHA_aarch64 == 'true' ]];then
if [[ $GHA_aarch64 == 'true' ]]; then
cp ./.github/workflows/src/windows/aarch64/mozconfig_win_aarch64_pgo_base mozconfig
elseif [[ $GHA_32bit == 'true' ]];then
elif [[ $GHA_32bit == 'true' ]]; then
cp ./.github/workflows/src/windows/x86/mozconfig_win_x86_pgo_base mozconfig
else
cp ./.github/workflows/src/windows/x86_64/mozconfig_win_x86_64_pgo_base mozconfig
Expand Down Expand Up @@ -295,9 +295,12 @@ jobs:
if [[ $GHA_aarch64 == 'true' ]];then
arch="aarch64"
arch_inst="win64-aarch64"
elseif [[ $GHA_32bit == 'true' ]];then
elif [[ $GHA_32bit == 'true' ]];then
arch="i686"
arch_inst="win32"
else
arch="x86_64"
arch_inst="win64"
fi
if [[ $GHA_zstd != 'true' ]];then
Expand Down

0 comments on commit 7b0efdb

Please sign in to comment.