Files
runner-images/images/ubuntu/scripts/build/install-apt-common.sh
T

19 lines
627 B
Bash
Raw Normal View History

2020-10-07 13:49:40 +05:00
#!/bin/bash -e
################################################################################
2023-11-22 21:49:23 +01:00
## File: install-apt-common.sh
## Desc: Install basic command line utilities and dev packages
################################################################################
2023-12-29 12:36:27 +01:00
# Source the helpers for use with the script
source $HELPER_SCRIPTS/install.sh
common_packages=$(get_toolset_value .apt.common_packages[])
cmd_packages=$(get_toolset_value .apt.cmd_packages[])
2023-12-29 12:36:27 +01:00
2020-06-17 11:43:03 +00:00
for package in $common_packages $cmd_packages; do
echo "Install $package"
2024-05-29 13:43:07 +02:00
apt-get install --no-install-recommends $package
2020-06-17 11:43:03 +00:00
done
2023-11-22 21:49:23 +01:00
invoke_tests "Apt"