Skip to content

Commit

Permalink
ci: fix path for win-unpacked-ia32 archive
Browse files Browse the repository at this point in the history
  • Loading branch information
nsakaimbo committed Sep 22, 2020
1 parent 0b7d7bc commit cad8210
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -897,9 +897,9 @@ jobs:
command: |
tar -zcf desktop/release/win-unpacked-x64.tar.gz desktop/release/win-unpacked
# Check if win-ia32 build is present before archiving: if this isn't a full
# artifact build, the win-ia32-unpacked executable will not be generated.
If ( $(Test-Path -Path release\win-ia32-unpacked) ) {
# Check if win-ia32 build is present before archiving. If this is a full
# artifact build, the win-ia32-unpacked executable will be generated and we can archive it.
If ( $(Test-Path -Path desktop\release\win-ia32-unpacked) ) {
tar -zcf desktop/release/win-unpacked-ia32.tar.gz desktop/release/win-ia32-unpacked
} else {
echo "Skipping tar archive for 'desktop\release\win-ia32-unpacked' (not built)"
Expand Down

0 comments on commit cad8210

Please sign in to comment.