We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 93d87e4 commit 76a38e2Copy full SHA for 76a38e2
1 file changed
lib/install.ps1
@@ -884,15 +884,15 @@ function pre_install($manifest, $arch) {
884
$pre_install = arch_specific 'pre_install' $manifest $arch
885
if($pre_install) {
886
write-output "Running pre-install script..."
887
- iex $pre_install
+ iex (@($pre_install) -join "`r`n")
888
}
889
890
891
function post_install($manifest, $arch) {
892
$post_install = arch_specific 'post_install' $manifest $arch
893
if($post_install) {
894
write-output "Running post-install script..."
895
- iex $post_install
+ iex (@($post_install) -join "`r`n")
896
897
898
0 commit comments