summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2013-02-24 10:20:53 +0100
committerFabian Affolter <mail@fabian-affolter.ch>2013-02-24 10:20:53 +0100
commit84c64d2eda6cd85cd318abddeea80dad4511a9bc (patch)
tree19afef4981973ba0bab65f2f46f81f60c1f32461
parentb9f069ab8038808e61c2b987ff5099b4240f9d7c (diff)
downloadalpine-chroot-84c64d2eda6cd85cd318abddeea80dad4511a9bc.tar.bz2
alpine-chroot-84c64d2eda6cd85cd318abddeea80dad4511a9bc.tar.xz
Updated to latest apk-tools-static
-rw-r--r--alpine-chroot.sh6
1 files changed, 2 insertions, 4 deletions
diff --git a/alpine-chroot.sh b/alpine-chroot.sh
index 10e4f2d..9b4f10b 100644
--- a/alpine-chroot.sh
+++ b/alpine-chroot.sh
@@ -1,7 +1,7 @@
#!/bin/bash
#
# alpine-chroot - Setup a Alpine Linux installation in a chroot.
-# Copyright (c) 2011- 2012 Fabian Affolter <fabian at affolter-engineering.ch>
+# Copyright (c) 2011- 2013 Fabian Affolter <fabian at affolter-engineering.ch>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
@@ -20,7 +20,7 @@
# http://wiki.alpinelinux.org/wiki/Setting_up_the_build_environment_in_chroot
MIRROR=http://dl-3.alpinelinux.org/alpine
-APK_TOOL=apk-tools-static-2.3.3-r1.apk
+APK_TOOL=apk-tools-static-2.3.4-r0.apk
usage() {
cat <<__EOF__
@@ -70,8 +70,6 @@ if [ "$CHROOT" = "" ]; then
CHROOT="alpinechroot-$RELEASE"
fi
-
-
# Root has $UID 0
ROOT_UID=0
if [ "$UID" != "$ROOT_UID" ]; then