diff options
author | Holger Levsen <holger@layer-acht.org> | 2014-04-09 03:44:57 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2014-04-09 03:44:57 +0200 |
commit | f733f4d9369193273d13c0eba6e3c3d70b1772a6 (patch) | |
tree | bea2932aeef13a504ba02809ea1c256fde906bcd /bin | |
parent | dabac51624069f8f491776cede881f9ce2b701b0 (diff) | |
download | jenkins.debian.net-f733f4d9369193273d13c0eba6e3c3d70b1772a6.tar.xz |
whitespace sensitive languages are evil, esp. when they are only rarely so
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/chroot-run.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/chroot-run.sh b/bin/chroot-run.sh index 32aeec6c..2251c504 100755 --- a/bin/chroot-run.sh +++ b/bin/chroot-run.sh @@ -29,9 +29,9 @@ fi DISTRO="$1" if [ "$DISTRO" == "stable+backports" ] ; then # FIXME: this works but is a bit too hackish for my liking - DISTRO = "stable" - BACKPORTS = "deb $MIRROR ${DISTRO}-backports main" - BACKPORTSSRC = "deb-src $MIRROR ${DISTRO}-backports main" + DISTRO="stable" + BACKPORTS="deb $MIRROR ${DISTRO}-backports main" + BACKPORTSSRC="deb-src $MIRROR ${DISTRO}-backports main" fi shift |