Skip to content

Commit

Permalink
CI: Fix build-asy-installer script.
Browse files Browse the repository at this point in the history
  • Loading branch information
jamievlin committed Aug 25, 2024
1 parent 6d6ffa8 commit d12a537
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions windows/build-asy-installer.ps1.in
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
#!/usr/bin/env pwsh

param(
[Parameter(Mandatory=$true)][string]$makensis_exec
[Parameter(Mandatory=$true)]
[string]$MakeNsisExec
)

& "${PY3_INTERPRETER}" "${BUILD_ASY_INSTALLER_SCRIPT}" `
--cmake-install-root="${CMAKE_INSTALL_PREFIX}" `
--asy-install-build-dir="${ASY_INSTALL_DIRECTORY}" `
--makensis-exec="$makensis_exec"
--makensis-exec="$MakeNsisExec"

0 comments on commit d12a537

Please sign in to comment.