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.
2 parents 9122c90 + 87326bc commit d360281Copy full SHA for d360281
build/base.install
@@ -131,6 +131,19 @@ bootstrap() {
131
# Use debootstrap for debian based distribution
132
if [ "$(package_type)" = "deb" ]; then
133
check_binary debootstrap
134
+ case "$dist" in
135
+ $supported_debian_dists)
136
+ scripts="sid"
137
+ ;;
138
+ $supported_ubuntu_dists)
139
+ scripts="gutsy"
140
141
+ esac
142
+ if [ ! -e /usr/share/debootstrap/scripts/${dist} ]; then
143
+ cd /usr/share/debootstrap/scripts
144
+ ln -s $scripts $dist
145
+ cd -
146
+ fi
147
debootstrap --arch ${ARCH:=amd64} --variant=minbase $dist "$target" $repository
148
# workaround no signature downloaded
149
rm -f "$target"/var/lib/apt/lists/*[es]
0 commit comments