mirror of
https://github.com/actions/runner-images.git
synced 2025-12-12 20:26:49 +00:00
* [ubuntu] Cleanup bash scripts * Fix ms-repos lsb_release * Fix install-bicep url * Fix install-nvm
14 lines
441 B
Bash
14 lines
441 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
|
|
|
|
pwsh_version=$(get_toolset_value .pwsh.version)
|
|
|
|
# Install Powershell
|
|
apt-get install -y powershell=$pwsh_version*
|