Skip to content

Commit ddb16ec

Browse files
committed
Remove bash older than 4.0
Bash+ library requires Bash 4.0 or higher
1 parent 43ddad5 commit ddb16ec

File tree

2 files changed

+1
-12
lines changed

2 files changed

+1
-12
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ INSTALL_MAN1 ?= $(DESTDIR)$(PREFIX)/share/man/man1
2424
# Docker variables:
2525
DOCKER_TAG ?= git-subrepo-testing:latest
2626
DOCKER_IMAGE := $(DOCKER_TAG)
27-
BASH_VERSIONS ?= 5.3 5.2 5.1 5.0 4.4 4.3 4.2 4.1 4.0 3.2
27+
BASH_VERSIONS ?= 5.3 5.2 5.1 5.0 4.4 4.3 4.2 4.1 4.0
2828
GIT_VERSIONS := 2.51 2.48 2.40 2.30 2.29 2.25 2.23
2929

3030
# Create matrix of all bash/git combinations for comprehensive testing

test/Dockerfile

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -32,17 +32,6 @@ RUN cd /root \
3232
&& rm -fr shellcheck* \
3333
&& true
3434

35-
# Build/install bash-3.2.57
36-
RUN cd /root \
37-
&& wget https://ftp.gnu.org/gnu/bash/bash-3.2.57.tar.gz \
38-
&& tar -xzf bash-3.2.57.tar.gz \
39-
&& cd bash-3.2.57 \
40-
&& ./configure --prefix=/bash-3.2 \
41-
&& make \
42-
&& make install \
43-
&& rm -fr bash* \
44-
&& true
45-
4635
# Buil/install bash-4.0
4736
RUN cd /root \
4837
&& wget https://ftp.gnu.org/gnu/bash/bash-4.0.tar.gz \

0 commit comments

Comments
 (0)