mirror of
https://github.com/actions/runner-images.git
synced 2025-12-13 12:48:18 +00:00
* [ubuntu] Rename build scripts * [ubuntu] Change reboot to inline shell * [ubuntu] Move disk space validation to pester tests * [ubuntu] Rename helper and tests files * [ubuntu] Changes to cleanup, post-deployment and r scripts
13 lines
394 B
Bash
13 lines
394 B
Bash
#!/bin/bash -e
|
|
################################################################################
|
|
## File: install-powershell.sh
|
|
## Desc: Install PowerShell Core
|
|
################################################################################
|
|
|
|
source $HELPER_SCRIPTS/install.sh
|
|
|
|
pwshversion=$(get_toolset_value .pwsh.version)
|
|
|
|
# Install Powershell
|
|
apt-get install -y powershell=$pwshversion*
|