diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-10-19 08:41:21 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-10-19 08:41:21 +0200 |
commit | 3bfe6d5f28e8edff763682659567cabc21382ff3 (patch) | |
tree | 44e392c2d710c195f83da99403ef898dbb4ce74a /bin/reproducible_arch_schroot_setup.sh | |
parent | b1eec7f143e1cc99fc4fbd9dd73f60dcc3a19116 (diff) | |
download | jenkins.debian.net-3bfe6d5f28e8edff763682659567cabc21382ff3.tar.xz |
reproducible Arch Linux: correctly spell project name
Diffstat (limited to 'bin/reproducible_arch_schroot_setup.sh')
-rwxr-xr-x | bin/reproducible_arch_schroot_setup.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/reproducible_arch_schroot_setup.sh b/bin/reproducible_arch_schroot_setup.sh index ea6786ce..dffe7ffd 100755 --- a/bin/reproducible_arch_schroot_setup.sh +++ b/bin/reproducible_arch_schroot_setup.sh @@ -18,7 +18,7 @@ ARCH_MIRROR=http://mirror.one.com/archlinux/ bootstrap() { # define URL for bootstrap.tgz BOOTSTRAP_BASE=$ARCH_MIRROR/iso/ - echo "$(date -u) - downloading Archlinux latest/sha1sums.txt" + echo "$(date -u) - downloading Arch Linux latest/sha1sums.txt" BOOTSTRAP_DATE=$(curl $BOOTSTRAP_BASE/latest/sha1sums.txt 2>/dev/null| grep x86_64.tar.gz| cut -d " " -f3|cut -d "-" -f3|egrep '[0-9.]{9}') if [ -z $BOOTSTRAP_DATE ] ; then echo "Cannot determine version of boostrap file, aborting." @@ -26,7 +26,7 @@ bootstrap() { exit 1 fi BOOTSTRAP_TAR_GZ=$BOOTSTRAP_DATE/archlinux-bootstrap-$BOOTSTRAP_DATE-x86_64.tar.gz - echo "$(date -u) - downloading Archlinux bootstrap.tar.gz." + echo "$(date -u) - downloading Arch Linux bootstrap.tar.gz." curl -O $BOOTSTRAP_BASE/$BOOTSTRAP_TAR_GZ tar xzf archlinux-bootstrap-$BOOTSTRAP_DATE-x86_64.tar.gz mv root.x86_64/* $SCHROOT_TARGET || true # proc and sys have 0555 perms, thus mv will fail... also see below |