diff options
author | Mattia Rizzolo <mattia@debian.org> | 2016-12-23 22:05:59 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2016-12-23 22:08:15 +0100 |
commit | dd3c33282cbe422c805646b8ed9178807acb7f0c (patch) | |
tree | df40ac1355273cd97663ade08eb2b3c79d04fca2 | |
parent | 6fba605f781d0f8605d60b0ef313fa3479a39427 (diff) | |
download | jenkins.debian.net-dd3c33282cbe422c805646b8ed9178807acb7f0c.tar.xz |
fixup 6fba605; fix syntax error
Signed-off-by: Holger Levsen <holger@layer-acht.org>
-rwxr-xr-x | bin/reproducible_setup_pbuilder.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/reproducible_setup_pbuilder.sh b/bin/reproducible_setup_pbuilder.sh index f7b5b5d2..c70aac3f 100755 --- a/bin/reproducible_setup_pbuilder.sh +++ b/bin/reproducible_setup_pbuilder.sh @@ -62,7 +62,7 @@ echo "Configuring APT to ignore the Release file expiration" echo 'Acquire::Check-Valid-Until "false";' > /etc/apt/apt.conf.d/398future echo echo "Working around debootstrap bug https://bugs.debian.org/817236" -if [ -L /dev/ptmx ] +if [ -L /dev/ptmx ]; then rm /dev/ptmx mknod -m 666 /dev/ptmx c 5 2 fi |