Skip to content
Merged
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
10 changes: 7 additions & 3 deletions stages/08.export-stage/02.export-sources/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -53,11 +53,15 @@ if [ "${EXPORT_SOURCES}" = y ]; then

######################## Debootstrap package source ########################

sed -i 's/^Types: deb$/Types: deb deb-src/' /etc/apt/sources.list.d/debian.sources
apt update

cd kuiper-volume/sources/debootstrap/

# Download debootstrap sources
DEBOOTSTRAP_VERSION=$(debootstrap --version | cut -d' ' -f 2)
wget -vO /kuiper-volume/sources/debootstrap/debootstrap.zip \
https://salsa.debian.org/installer-team/debootstrap/-/archive/debian/${DEBOOTSTRAP_VERSION}/debootstrap-debian-${DEBOOTSTRAP_VERSION}.zip
apt-get --download-only source debootstrap

cd /

######################## Debian packages sources ########################

Expand Down
Loading