Ver a proveniência

Add double apt command to fix fetch error.

tags/v4.0.0-beta.1
Luigi F. Cruz há 4 anos
committed by GitHub
ascendente
cometimento
470b94beb0
Não foi encontrada uma chave conhecida para esta assinatura, na base de dados ID da chave GPG: 4AEE18F83AFDEB23
1 ficheiros alterados com 4 adições e 2 eliminações
  1. +4
    -2
      builder/build.sh

+ 4
- 2
builder/build.sh Ver ficheiro

@@ -20,7 +20,8 @@ EOF
PACKAGES="$(sed -f "${SCRIPT_DIR}/remove-comments.sed" < "${i}-packages-nr")"
if [ -n "$PACKAGES" ]; then
on_chroot << EOF
apt-get -o APT::Acquire::Retries=3 install --no-install-recommends -y $PACKAGES
apt-get -o APT::Acquire::Retries=3 --fix-missing install --no-install-recommends -y $PACKAGES
apt-get -o APT::Acquire::Retries=3 --fix-missing install --no-install-recommends -y $PACKAGES
EOF
fi
log "End ${SUB_STAGE_DIR}/${i}-packages-nr"
@@ -30,7 +31,8 @@ EOF
PACKAGES="$(sed -f "${SCRIPT_DIR}/remove-comments.sed" < "${i}-packages")"
if [ -n "$PACKAGES" ]; then
on_chroot << EOF
apt-get -o APT::Acquire::Retries=3 install -y $PACKAGES
apt-get -o APT::Acquire::Retries=3 --fix-missing install -y $PACKAGES
apt-get -o APT::Acquire::Retries=3 --fix-missing install -y $PACKAGES
EOF
fi
log "End ${SUB_STAGE_DIR}/${i}-packages"


Carregando…
Cancelar
Guardar