mirror of
https://github.com/actions/runner-images.git
synced 2025-12-10 19:16:48 +00:00
* [Ubuntu] Uodated the script to install the powershell * [Ubuntu] Fixing the powershell and kotlin --------- Co-authored-by: Ravi Akshintala <raviakshintalagithub.com@Ravis-Laptop.local>
16 lines
472 B
Bash
16 lines
472 B
Bash
#!/bin/bash -e
|
|
################################################################################
|
|
## File: install-powershell.sh
|
|
## Desc: Install PowerShell Core
|
|
################################################################################
|
|
|
|
# Source the helpers for use with the script
|
|
source $HELPER_SCRIPTS/install.sh
|
|
source $HELPER_SCRIPTS/os.sh
|
|
|
|
pwsh_version=$(get_toolset_value .pwsh.version)
|
|
|
|
# Install Powershell
|
|
|
|
apt-get install powershell=$pwsh_version*
|