Skip to content

Commit

Permalink
equalizer-apo-np: Fix installation
Browse files Browse the repository at this point in the history
The app's installer does not work properly with quoted args
related: ScoopInstaller/Scoop#5065
  • Loading branch information
issaclin32 authored Aug 21, 2022
1 parent f3a655d commit 1724df9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bucket/equalizer-apo-np.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,12 @@
" $configurator_process | ForEach-Object { Stop-Process -Id $_.Id }",
"} | Out-Null",
"",
"Invoke-ExternalCommand \"$dir\\setup.exe\" -ArgumentList '/S' | Out-Null",
"Start-Process \"$dir\\setup.exe\" -ArgumentList '/S' -Wait -Verb RunAs | Out-Null",
"Remove-Item \"$dir\\setup.exe\""
]
},
"uninstaller": {
"script": "Invoke-ExternalCommand \"$([Environment]::GetFolderPath('programfiles'))\\EqualizerAPO\\Uninstall.exe\" -ArgumentList '/S' -RunAs | Out-Null"
"script": "Start-Process \"$Env:ProgramFiles\\EqualizerAPO\\Uninstall.exe\" -ArgumentList '/S' -Wait -Verb RunAs | Out-Null"
},
"checkver": {
"url": "https://sourceforge.net/projects/equalizerapo/files/",
Expand Down

0 comments on commit 1724df9

Please sign in to comment.