mirror of
https://github.com/actions/runner-images.git
synced 2025-12-11 11:37:00 +00:00
12 lines
452 B
Bash
12 lines
452 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 --no-install-recommends $vital_packages
|