mirror of
https://github.com/actions/runner-images.git
synced 2025-12-13 04:37:09 +00:00
13 lines
390 B
Bash
13 lines
390 B
Bash
#!/bin/bash -e
|
|
################################################################################
|
|
## File: powershellcore.sh
|
|
## Desc: Installs powershellcore
|
|
################################################################################
|
|
|
|
source $HELPER_SCRIPTS/install.sh
|
|
|
|
pwshversion=$(get_toolset_value .pwsh.version)
|
|
|
|
# Install Powershell
|
|
apt-get install -y powershell=$pwshversion*
|