apt update exploding because repo changed its 'Suite' value from 'stable' to 'oldstable' >_> ...

This commit is contained in:
Alexandre Aubin 2021-08-19 19:48:43 +02:00
parent f6ceddbd0f
commit d751fee94f
3 changed files with 3 additions and 3 deletions

View file

@ -2,7 +2,7 @@
PKG_PATH=$1 PKG_PATH=$1
apt-get -q update apt-get -q update --allow-releaseinfo-change
cd $PKG_PATH cd $PKG_PATH

View file

@ -1,2 +1,2 @@
#!/bin/sh #!/bin/sh
/usr/bin/apt-get update /usr/bin/apt-get update --allow-releaseinfo-change

View file

@ -4,6 +4,6 @@ codename=$1
package=$2 package=$2
version=$3 version=$3
apt-get update > /dev/null 1>&1 apt-get update --allow-releaseinfo-change > /dev/null 1>&1
apt-get -q --download-only --only-source \ apt-get -q --download-only --only-source \
source ${package}=${version} source ${package}=${version}