Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions bash/common.sh
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@ general_init()
MKSBUILD_VERSION=0.194

# The minimum version of debootstrap we use
# The version of debootstrap included in Ubuntu 23.10 Mantic (pre-release)
DEBOOTSTRAP_VERSION=1.0.128+nmu5ubuntu1
# The version of debootstrap included in Ubuntu 23.10 Mantic
DEBOOTSTRAP_VERSION=1.0.132ubuntu1

RED='\033[0;31m'
GREEN='\033[0;32m'
Expand Down
2 changes: 1 addition & 1 deletion bash/setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ function checkAndInstallRequirements()
if [ ! -f "$HOME/bin/debootstrap.v${DEBOOTSTRAP_VERSION}" ]; then
log "Installing version ${DEBOOTSTRAP_VERSION} of debootstrap"
pushd /tmp
TRACE wget "https://mirrors.kernel.org/ubuntu/pool/main/d/debootstrap/debootstrap_${DEBOOTSTRAP_VERSION}_all.deb"
TRACE wget "https://old-releases.ubuntu.com/ubuntu/pool/main/d/debootstrap/debootstrap_${DEBOOTSTRAP_VERSION}_all.deb"
sudo dpkg -i "debootstrap_${DEBOOTSTRAP_VERSION}_all.deb"
popd
touch "$HOME/bin/debootstrap.v${DEBOOTSTRAP_VERSION}"
Expand Down