From 03a31b7942c1e793317f7581daa75b236b812489 Mon Sep 17 00:00:00 2001 From: OCram85 Date: Thu, 26 Oct 2023 19:22:56 +0200 Subject: [PATCH] fix pwsh install package (#72) #### :book: Summary replace `powershell` with `powershell-lts` package #### :bookmark_tabs: Alternate test plan | Choice | Test Method | | :----: | :----------- | | | Custom test | | | No test plan | ##### Details / Justification > :bulb: Add your test details or justification for missing tests here. #### :books: Additional Notes - fixes #71 Reviewed-on: https://gitea.ocram85.com/CodeServer/arkanum/pulls/72 Co-authored-by: OCram85 Co-committed-by: OCram85 --- arkanum | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arkanum b/arkanum index 96878cc..fda8a94 100755 --- a/arkanum +++ b/arkanum @@ -169,7 +169,7 @@ function instPwsh() { say "Installing PowerShell..." "PowerShell" # Install PowerShell - sudo -E apt-get install --no-install-recommends -y powershell + sudo -E apt-get install --no-install-recommends -y powershell-lts say "done." "PowerShell" }