We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6878ae2 commit e16a796Copy full SHA for e16a796
scripts/ft-apt-get-update.sh
@@ -7,5 +7,13 @@ set -x
7
. $(dirname $0)/build/build.conf.sub
8
9
${SUDO} apt-get update -y --fix-missing
10
+
11
+if test -f /etc/apt/sources.list && grep -q bionic /etc/apt/sources.list
12
+then
13
+ ${SUDO} apt-get install -y ca-certificates
14
+ ${SUDO} perl -pi -e 's|http://|https://|g' /etc/apt/sources.list
15
+ ${SUDO} apt-get update -y --fix-missing
16
+fi
17
18
${SUDO} apt-mark hold grub-efi-amd64-signed
19
${SUDO} apt-get autoclean
0 commit comments