mirror of https://github.com/zulip/zulip.git
install: Do not pull in "recommended" packages.
This likely has no effect in this instance, but is good practice.
This commit is contained in:
parent
e8f7e281a7
commit
7424d4e721
|
@ -375,7 +375,7 @@ if [ "$package_system" = apt ]; then
|
|||
# Note that any additions to these lists must also be added to
|
||||
# `zulip::profile::base` such that the new dependency is seen by
|
||||
# upgrades, as well as new installs.
|
||||
if ! apt-get install -y \
|
||||
if ! apt-get install -y --no-install-recommends \
|
||||
python3 python3-yaml puppet git curl jq crudini \
|
||||
"${ADDITIONAL_PACKAGES[@]}"; then
|
||||
set +x
|
||||
|
|
Loading…
Reference in New Issue