Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Draft
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Needs plusses
  • Loading branch information
zooba committed Feb 27, 2024
commit fb7d8957cf492a4fe976892c29a9bf246c7696ca
10 changes: 5 additions & 5 deletions windows-release/test-msi.ps1
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
param ([string]$SetupExe)

Write-Host "##[section]Install Python"
$SetupCmd = "$SetupExe /passive /log ""C:\Logs\install\log.txt"" "`
"TargetDir=C:\Python " `
"Include_debug=1 " `
"Include_symbols=1 " `
"InstallAllUsers=${env:InstallAllUsers} " `
$SetupCmd = "$SetupExe /passive /log ""C:\Logs\install\log.txt"" " + `
"TargetDir=C:\Python " + `
"Include_debug=1 " + `
"Include_symbols=1 " + `
"InstallAllUsers=${env:InstallAllUsers} " + `
"${env:IncludeFreethreadedOpt}"
Write-Host "##[command]$SetupCmd"
& $SetupCmd
Expand Down