From 67a3b0c70341a89731adfefc67fa298cc82b7cca Mon Sep 17 00:00:00 2001 From: Victor Irzak Date: Mon, 19 Feb 2024 07:34:16 -0500 Subject: [PATCH] Use ful path to call pwsh, since it is not in the path yet --- pwsh/install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pwsh/install.sh b/pwsh/install.sh index 85e5edb10..941782b4c 100644 --- a/pwsh/install.sh +++ b/pwsh/install.sh @@ -46,7 +46,7 @@ __init_pwsh() { pkg_done_message() { echo "Installed 'pwsh' at $pkg_dst" - pwsh -V + $pkg_dst_cmd -V } }