diff --git a/pwsh/install.sh b/pwsh/install.sh index 85e5edb10..e0e44bced 100644 --- a/pwsh/install.sh +++ b/pwsh/install.sh @@ -45,8 +45,10 @@ __init_pwsh() { } pkg_done_message() { - echo "Installed 'pwsh' at $pkg_dst" - pwsh -V + # We print the version here to ensure the install completed without + # errors - no missing libraries, not incompatible arch, etc + echo "" + "$pkg_dst_cmd" -V } }