diff mbox series

[1/1] ci/alpine.sh: Install bash

Message ID 20220715073121.8979-1-pvorel@suse.cz (mailing list archive)
State New, archived
Headers show
Series [1/1] ci/alpine.sh: Install bash | expand

Commit Message

Petr Vorel July 15, 2022, 7:31 a.m. UTC
bash is a dependency for tests, not being installed by default on
containers.

This fixes:
../test-driver: line 112: ./ima_hash.test: not found
../test-driver: line 112: ./sign_verify.test: not found
../test-driver: line 112: ./boot_aggregate.test: not found

Signed-off-by: Petr Vorel <pvorel@suse.cz>
---
 ci/alpine.sh | 1 +
 1 file changed, 1 insertion(+)

Comments

Mimi Zohar July 19, 2022, 1:18 a.m. UTC | #1
On Fri, 2022-07-15 at 09:31 +0200, Petr Vorel wrote:
> bash is a dependency for tests, not being installed by default on
> containers.
> 
> This fixes:
> ../test-driver: line 112: ./ima_hash.test: not found
> ../test-driver: line 112: ./sign_verify.test: not found
> ../test-driver: line 112: ./boot_aggregate.test: not found
> 
> Signed-off-by: Petr Vorel <pvorel@suse.cz>

Thanks, Petr!
diff mbox series

Patch

diff --git a/ci/alpine.sh b/ci/alpine.sh
index 63d7954..0e4ba0d 100755
--- a/ci/alpine.sh
+++ b/ci/alpine.sh
@@ -26,6 +26,7 @@  apk add \
 	attr-dev \
 	autoconf \
 	automake \
+	bash \
 	diffutils \
 	docbook-xml \
 	docbook-xsl \