Skip to content

Commit e7e7cfe

Browse files
Merge #687
687: Fix broken link in `dropbear.sh` r=Emilgardis a=Jules-Bertholet The broken link prevented Docker images from building. Co-authored-by: Jules Bertholet <[email protected]>
2 parents 91db074 + 9e7d080 commit e7e7cfe

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

docker/dropbear.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ set -euo pipefail
77
. lib.sh
88

99
main() {
10-
local version=2020.80
10+
local version=2022.82
1111

1212
install_packages \
1313
autoconf \
@@ -24,7 +24,7 @@ main() {
2424

2525
pushd "${td}"
2626

27-
curl --retry 3 -sSfL "https://matt.ucc.asn.au/dropbear/dropbear-${version}.tar.bz2" -O
27+
curl --retry 3 -sSfL "https://matt.ucc.asn.au/dropbear/releases/dropbear-${version}.tar.bz2" -O
2828
tar --strip-components=1 -xjf "dropbear-${version}.tar.bz2"
2929

3030
# Remove some unwanted message

docker/linux-image.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ set -euo pipefail
66
main() {
77
# arch in the rust target
88
local arch="${1}" \
9-
kversion=4.19.0-17
9+
kversion=4.19.0-20
1010

1111
local debsource="deb http://http.debian.net/debian/ buster main"
1212
debsource="${debsource}\ndeb http://security.debian.org/ buster/updates main"

0 commit comments

Comments
 (0)