Skip to content

Commit

Permalink
Merge pull request #561 from Abestanis/fix/installer_build
Browse files Browse the repository at this point in the history
Fix Windows installer build
  • Loading branch information
gyunaev authored Aug 31, 2023
2 parents 667494f + e4eb64b commit e065101
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ jobs:
fi
- name: Install installer dependencies
if: steps.check-deploy.outputs.is_deploy == 'true'
run: choco install -y nsis;
run: choco install -y nsis --version=3.6;
- name: Create installer
if: steps.check-deploy.outputs.is_deploy == 'true'
working-directory: ${{ runner.workspace }}/build
Expand Down
6 changes: 3 additions & 3 deletions installer/Utils.nsh
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
!include StrFunc.nsh
${StrLoc}

!define ERROR_ALREADY_EXISTS 0x000000b7
!define ERROR_ACCESS_DENIED 0x5
!define ERROR_SIGNAL_REFUSED 0x9C
!define /ifndef ERROR_ALREADY_EXISTS 0x000000b7
!define /ifndef ERROR_ACCESS_DENIED 0x5
!define /ifndef ERROR_SIGNAL_REFUSED 0x9C

# === Functions === #

Expand Down

0 comments on commit e065101

Please sign in to comment.