Files
runner-images/images/linux/scripts/helpers/os.sh
T

20 lines
439 B
Bash
Raw Normal View History

2020-10-24 23:30:27 +07:00
#!/bin/bash -e
2020-04-02 18:14:11 +05:00
################################################################################
## File: install-helpers.sh
## Desc: Helper functions for installing tools
################################################################################
2020-05-26 18:45:48 +03:00
function isUbuntu20
{
lsb_release -d | grep -q 'Ubuntu 20'
2020-04-02 18:14:11 +05:00
}
function isUbuntu22
{
lsb_release -d | grep -q 'Ubuntu 22'
}
2020-04-02 18:14:11 +05:00
function getOSVersionLabel
{
2020-05-26 18:45:48 +03:00
lsb_release -cs
2020-04-02 18:14:11 +05:00
}