summaryrefslogtreecommitdiffstats
path: root/bin/chroot-run.sh
diff options
context:
space:
mode:
authorHolger Levsen <holger@layer-acht.org>2015-02-27 17:16:24 +0100
committerHolger Levsen <holger@layer-acht.org>2015-02-27 17:16:24 +0100
commitbed2d625561d8ab58625a4a79efc8f47de842da1 (patch)
tree2e0caf9bdbf6b011f864f4b3f4702b70e987b6c2 /bin/chroot-run.sh
parent6902d71a925e460ffced79ad475b37352a74f4dc (diff)
downloadjenkins.debian.net-bed2d625561d8ab58625a4a79efc8f47de842da1.tar.xz
fix bashisms
Diffstat (limited to 'bin/chroot-run.sh')
-rwxr-xr-xbin/chroot-run.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/chroot-run.sh b/bin/chroot-run.sh
index e771cf86..7ce2ad28 100755
--- a/bin/chroot-run.sh
+++ b/bin/chroot-run.sh
@@ -24,13 +24,13 @@ fi
DISTRO="$1"
shift
-if [ "$1" == "backports" ] ; then
+if [ "$1" = "backports" ] ; then
BACKPORTS="deb $MIRROR ${DISTRO}-backports main"
BACKPORTSSRC="deb-src $MIRROR ${DISTRO}-backports main"
shift
fi
-if [ "$1" == "minimal" ] ; then
+if [ "$1" = "minimal" ] ; then
MINIMAL=yes
BOOTSTRAP_OPTIONS=--variant=minbase
shift