mirror of
https://github.com/actions/runner-images-sangeeth.git
synced 2025-12-20 06:29:50 +00:00
* [ubuntu] Cleanup bash scripts * Fix ms-repos lsb_release * Fix install-bicep url * Fix install-nvm
14 lines
358 B
Bash
14 lines
358 B
Bash
#!/bin/bash -e
|
|
################################################################################
|
|
## File: os.sh
|
|
## Desc: Helper functions for OS releases
|
|
################################################################################
|
|
|
|
is_ubuntu20() {
|
|
lsb_release -d | grep -q 'Ubuntu 20'
|
|
}
|
|
|
|
is_ubuntu22() {
|
|
lsb_release -d | grep -q 'Ubuntu 22'
|
|
}
|