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

20 lines
450 B
Bash
Raw Normal View History

2020-04-02 18:14:11 +05:00
#!/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
{
2020-04-28 19:15:30 +03:00
lsb_release -cs
2020-04-02 18:14:11 +05:00
}