Merge remote-tracking branch 'bricewge/fix-34'

This commit is contained in:
Adam Spiers 2019-06-25 20:10:43 +01:00
commit 66d511b07b
3 changed files with 3 additions and 3 deletions

View file

@ -1,4 +1,4 @@
#!/bin/bash #!/usr/bin/env bash
set -eu set -eu

View file

@ -3,7 +3,6 @@
# `docker run --rm -it -v $(pwd):$(pwd) -w $(pwd) stowtest` # `docker run --rm -it -v $(pwd):$(pwd) -w $(pwd) stowtest`
FROM debian:jessie FROM debian:jessie
RUN DEBIAN_FRONTEND=noninteractive \ RUN DEBIAN_FRONTEND=noninteractive \
apt-get clean && \
apt-get update -qq && \ apt-get update -qq && \
apt-get install -y -q \ apt-get install -y -q \
autoconf \ autoconf \
@ -18,6 +17,7 @@ apt-get install -y -q \
texinfo \ texinfo \
texlive \ texlive \
texi2html \ texi2html \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/* && rm -rf /var/lib/apt/lists/*
# Set up perlbrew # Set up perlbrew

View file

@ -1,4 +1,4 @@
#!/bin/bash #!/usr/bin/env bash
# Test Stow across multiple Perl versions, by executing the # Test Stow across multiple Perl versions, by executing the
# Docker image built via build-docker.sh. # Docker image built via build-docker.sh.