mirror of
https://github.com/actions/runner-images.git
synced 2025-12-15 06:08:07 +00:00
20 lines
450 B
Bash
20 lines
450 B
Bash
#!/bin/bash
|
|
################################################################################
|
|
## File: install-helpers.sh
|
|
## Desc: Helper functions for installing tools
|
|
################################################################################
|
|
|
|
function isUbuntu16
|
|
{
|
|
lsb_release -d|grep 'Ubuntu 16' > /dev/null
|
|
}
|
|
|
|
function isUbuntu18
|
|
{
|
|
lsb_release -d|grep 'Ubuntu 18' > /dev/null
|
|
}
|
|
|
|
function getOSVersionLabel
|
|
{
|
|
lsb_release -cs
|
|
} |