Files
runner-images/images/linux/scripts/helpers/os.sh
Darii Nurgaleev 44d1f85e34 add missed shebang
2020-10-24 23:30:27 +07:00

25 lines
505 B
Bash

#!/bin/bash -e
################################################################################
## File: install-helpers.sh
## Desc: Helper functions for installing tools
################################################################################
function isUbuntu16
{
lsb_release -d | grep -q 'Ubuntu 16'
}
function isUbuntu18
{
lsb_release -d | grep -q 'Ubuntu 18'
}
function isUbuntu20
{
lsb_release -d | grep -q 'Ubuntu 20'
}
function getOSVersionLabel
{
lsb_release -cs
}