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.
1 parent b2feab1 commit f6c7b17Copy full SHA for f6c7b17
plugins/envsetup
@@ -25,6 +25,9 @@ shout() {
25
echo -e "=> ${*}"
26
:
27
}
28
+msg() {
29
+ echo -e "${*}"
30
+}
31
# lshout () { echo -e "${*}";:; }
32
33
do_mount() {
@@ -157,7 +160,10 @@ do_debootstrap() {
157
160
if [[ -n $OVERRIDER_MIRROR ]]; then
158
161
MIRROR="$OVERRIDER_MIRROR"
159
162
else
- MIRROR="http://ports.ubuntu.com/ubuntu-ports/"
163
+ case $arch in
164
+ amd64|i386) MIRROR="http://archive.ubuntu.com/ubuntu/" ;;
165
+ *) MIRROR="http://ports.ubuntu.com/ubuntu-ports/" ;;
166
+ esac
167
fi
168
169
(
0 commit comments