From 7b70ab85380727919ae43b986a37a90cf832572c Mon Sep 17 00:00:00 2001 From: AJ ONeal Date: Thu, 16 May 2024 21:09:30 +0000 Subject: [PATCH] ref(pwsh): cleanup and comment 'pkg_done_message' --- pwsh/install.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pwsh/install.sh b/pwsh/install.sh index 5d421e10..e0e44bce 100644 --- a/pwsh/install.sh +++ b/pwsh/install.sh @@ -45,7 +45,9 @@ __init_pwsh() { } pkg_done_message() { - echo "Installed 'pwsh' at $pkg_dst" + # We print the version here to ensure the install completed without + # errors - no missing libraries, not incompatible arch, etc + echo "" "$pkg_dst_cmd" -V } }