Files
runner-images/images/linux/scripts/installers/powershellcore.sh
T

16 lines
522 B
Bash
Raw Normal View History

2020-10-07 13:49:40 +05:00
#!/bin/bash -e
################################################################################
## File: powershellcore.sh
## Desc: Installs powershellcore
################################################################################
# Install Powershell
2020-11-12 10:48:00 +03:00
apt-get install -y powershell
# Run tests to determine that the software installed as expected
echo "Testing to make sure that script performed as expected, and basic scenarios work"
if ! command -v pwsh; then
echo "pwsh was not installed"
exit 1
fi