mirror of
https://github.com/actions/runner-images.git
synced 2025-12-11 11:37:00 +00:00
20 lines
439 B
Bash
20 lines
439 B
Bash
#!/bin/bash -e
|
|
################################################################################
|
|
## File: install-helpers.sh
|
|
## Desc: Helper functions for installing tools
|
|
################################################################################
|
|
|
|
function isUbuntu20
|
|
{
|
|
lsb_release -d | grep -q 'Ubuntu 20'
|
|
}
|
|
|
|
function isUbuntu22
|
|
{
|
|
lsb_release -d | grep -q 'Ubuntu 22'
|
|
}
|
|
|
|
function getOSVersionLabel
|
|
{
|
|
lsb_release -cs
|
|
} |