mirror of
https://github.com/actions/runner-images.git
synced 2025-12-15 06:08:07 +00:00
* [ubuntu] Cleanup bash scripts * Fix ms-repos lsb_release * Fix install-bicep url * Fix install-nvm
12 lines
455 B
Bash
12 lines
455 B
Bash
#!/bin/bash -e
|
|
################################################################################
|
|
## File: install-apt-vital.sh
|
|
## Desc: Install vital command line utilities
|
|
################################################################################
|
|
|
|
# Source the helpers for use with the script
|
|
source $HELPER_SCRIPTS/install.sh
|
|
|
|
vital_packages=$(get_toolset_value .apt.vital_packages[])
|
|
apt-get install -y --no-install-recommends $vital_packages
|