mirror of
https://github.com/actions/runner-images-sangeeth.git
synced 2025-12-20 06:29:50 +00:00
* add missing tests * fix naming and nvm test * fix containers test and bring pwsh test back * remove pwsh test * small fix
11 lines
344 B
Bash
11 lines
344 B
Bash
#!/bin/bash -e
|
|
################################################################################
|
|
## File: subversion.sh
|
|
## Desc: Installs Subversion client
|
|
################################################################################
|
|
|
|
# Install Subversion
|
|
apt-get install -y --no-install-recommends subversion
|
|
|
|
invoke_tests "Tools" "SVN"
|